From 47369586e8a634b0443df086a486f06096dd7ea4 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Tue, 24 Mar 2026 11:41:05 -0400 Subject: [PATCH] feat(auth): note about reauth flow Signed-off-by: Adam Setch --- src/renderer/routes/LoginWithDeviceFlow.tsx | 24 +++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/renderer/routes/LoginWithDeviceFlow.tsx b/src/renderer/routes/LoginWithDeviceFlow.tsx index 45748bd48..51482ff9d 100644 --- a/src/renderer/routes/LoginWithDeviceFlow.tsx +++ b/src/renderer/routes/LoginWithDeviceFlow.tsx @@ -17,6 +17,8 @@ import { Text, } from '@primer/react'; +import { Constants } from '../constants'; + import { useAppContext } from '../hooks/useAppContext'; import { Contents } from '../components/layout/Contents'; @@ -33,6 +35,7 @@ import { } from '../utils/auth/utils'; import { rendererLogError } from '../utils/core/logger'; import { copyToClipboard, openExternalLink } from '../utils/system/comms'; +import { openDeveloperSettings } from '../utils/system/links'; interface LocationState { account?: Account; @@ -262,6 +265,27 @@ export const LoginWithDeviceFlowRoute: FC = () => { + + + + Note: to change previously granted permissions, revoke Gitify's + access at{' '} + + , then re-authorize above. + + );