diff options
author | 2021-01-03 18:18:52 +0000 | |
---|---|---|
committer | 2021-01-03 18:18:52 +0000 | |
commit | 2e674d14ca1cd8037f8bbd33cdf415a2e4970ae1 (patch) | |
tree | 93d2f7186a31cf6502810170d94fc77634c89f4d /src/pages/CallbackPage.tsx | |
parent | Typo fix in GHA (diff) | |
parent | Adds Pre-commit Hook (diff) |
Merge pull request #72 from python-discord/dev-workflow
Update Developer Workflow
Diffstat (limited to 'src/pages/CallbackPage.tsx')
-rw-r--r-- | src/pages/CallbackPage.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/CallbackPage.tsx b/src/pages/CallbackPage.tsx index 691a3e4..fab2086 100644 --- a/src/pages/CallbackPage.tsx +++ b/src/pages/CallbackPage.tsx @@ -2,7 +2,7 @@ import { jsx } from "@emotion/react"; import { useState } from "react"; -export default function CallbackPage() { +export default function CallbackPage(): JSX.Element { const [hasSent, setHasSent] = useState(false); const params = new URLSearchParams(location.search); |