We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe55c73 commit 3bb3164Copy full SHA for 3bb3164
site/pages/cli-auth.tsx
@@ -1,5 +1,5 @@
1
-import { Typography } from "@material-ui/core"
2
import Paper from "@material-ui/core/Paper"
+import Typography from "@material-ui/core/Typography"
3
import { makeStyles } from "@material-ui/core/styles"
4
import React, { useEffect, useState } from "react"
5
import { getApiKey } from "../api"
@@ -16,7 +16,7 @@ const CliAuthenticationPage: React.FC = () => {
16
17
useEffect(() => {
18
if (me?.id) {
19
- getApiKey().then(({ key }) => {
+ void getApiKey().then(({ key }) => {
20
setApiKey(key)
21
})
22
}
0 commit comments