Skip to content

Commit 506d907

Browse files
committed
prettier
1 parent cde4663 commit 506d907

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ const App = () => {
268268

269269
// Auto-connect to previously saved serverURL after OAuth callback
270270
const onOAuthDebugConnect = useCallback(
271-
(serverUrl: string, authorizationCode?: string) => {
271+
(_serverUrl: string, authorizationCode?: string) => {
272272
setIsAuthDebuggerVisible(true);
273273
if (authorizationCode) {
274274
updateAuthState({

client/src/components/OAuthDebugCallback.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ const OAuthDebugCallback = ({ onConnect }: OAuthCallbackProps) => {
9898
);
9999
};
100100

101-
export default OAuthDebugCallback;
101+
export default OAuthDebugCallback;

client/src/lib/auth-types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ export class DebugInspectorOAuthClientProvider {
4343
get redirectUrl(): string {
4444
return `${window.location.origin}/oauth/callback/debug`;
4545
}
46-
}
46+
}

0 commit comments

Comments
 (0)