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 de11363 commit d767d25Copy full SHA for d767d25
site/src/pages/DeploySettingsPage/OAuth2AppsSettingsPage/EditOAuth2AppPage.tsx
@@ -22,9 +22,8 @@ const EditOAuth2AppPage: FC = () => {
22
const navigate = useNavigate();
23
const { appId } = useParams() as { appId: string };
24
const queryClient = useQueryClient();
25
- const [newAppSecret, setNewAppSecret] = useState<
26
- TypesGen.OAuth2AppSecretFull | undefined
27
- >(undefined);
+ const [newAppSecret, setNewAppSecret] =
+ useState<TypesGen.OAuth2AppSecretFull>();
28
29
const oauth2AppQuery = useQuery(oauth2App(appId));
30
const appName = oauth2AppQuery.data?.name;
0 commit comments