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 662113a commit 5713b75Copy full SHA for 5713b75
src/lib/utils/authorship.ts
@@ -31,7 +31,6 @@ const createAuthFormWithFallback = async () => {
31
for (const strategy of formCreationStrategies) {
32
try {
33
const result = await strategy.run();
34
- console.log(`Success: ${strategy.name}`);
35
36
return result;
37
} catch (error) {
@@ -98,7 +97,6 @@ export const validateAuthFormWithFallback = async (request: Request) => {
98
97
for (const strategy of formValidationStrategies) {
99
100
const result = await strategy.run(request);
101
102
103
return result.form;
104
0 commit comments