Skip to content

Commit bd38703

Browse files
committed
undo linting change
1 parent 4becaf2 commit bd38703

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

packages/builder/src/components/providers/identity/credentials.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,9 @@ export function openOauthWindow(
157157
const channel = new BroadcastChannel(broadcastChannelName);
158158

159159
// timeout after 5 minutes
160-
const timeout = setTimeout(
161-
() => {
162-
reject(new VerificationError("Authorization timed out"));
163-
},
164-
1000 * 60 * 5
165-
);
160+
const timeout = setTimeout(() => {
161+
reject(new VerificationError("Authorization timed out"));
162+
}, 1000 * 60 * 5);
166163

167164
channel.addEventListener("message", (event: any) => {
168165
const eventData = event.data as {

0 commit comments

Comments
 (0)