Skip to content

Commit 5713b75

Browse files
committed
:chore: Remove console.log (#2446)
1 parent 662113a commit 5713b75

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lib/utils/authorship.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ const createAuthFormWithFallback = async () => {
3131
for (const strategy of formCreationStrategies) {
3232
try {
3333
const result = await strategy.run();
34-
console.log(`Success: ${strategy.name}`);
3534

3635
return result;
3736
} catch (error) {
@@ -98,7 +97,6 @@ export const validateAuthFormWithFallback = async (request: Request) => {
9897
for (const strategy of formValidationStrategies) {
9998
try {
10099
const result = await strategy.run(request);
101-
console.log(`Success: ${strategy.name}`);
102100

103101
return result.form;
104102
} catch (error) {

0 commit comments

Comments
 (0)