Skip to content

Commit 3bb3164

Browse files
committed
Fix lint warnings
1 parent fe55c73 commit 3bb3164

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/pages/cli-auth.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Typography } from "@material-ui/core"
21
import Paper from "@material-ui/core/Paper"
2+
import Typography from "@material-ui/core/Typography"
33
import { makeStyles } from "@material-ui/core/styles"
44
import React, { useEffect, useState } from "react"
55
import { getApiKey } from "../api"
@@ -16,7 +16,7 @@ const CliAuthenticationPage: React.FC = () => {
1616

1717
useEffect(() => {
1818
if (me?.id) {
19-
getApiKey().then(({ key }) => {
19+
void getApiKey().then(({ key }) => {
2020
setApiKey(key)
2121
})
2222
}

0 commit comments

Comments
 (0)