Skip to content

Commit

Permalink
fix: Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bharatkashyap committed Jan 28, 2025
1 parent 0054e33 commit b8bfcde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ export default function SlotPropsSignIn() {
`Signing in with "${provider.name}" and credentials: ${formData.get('email')}, ${formData.get('password')} and checkbox value: ${formData.get('tandc')}`,
);
} else {
return new Promise((resolve, reject) => {
return new Promise((resolve) => {
setTimeout(() => {
resolve({ error: 'This is a fake error' });
}, 1000);
});
}
return;
return undefined;
}}
slots={{ checkbox: RememberMeCheckbox }}
slotProps={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ export default function SlotPropsSignIn() {
`Signing in with "${provider.name}" and credentials: ${formData.get('email')}, ${formData.get('password')} and checkbox value: ${formData.get('tandc')}`,
);
} else {
return new Promise((resolve, reject) => {
return new Promise((resolve) => {
setTimeout(() => {
resolve({ error: 'This is a fake error' });
}, 1000);
});
}
return;
return undefined;
}}
slots={{ checkbox: RememberMeCheckbox }}
slotProps={{
Expand Down

0 comments on commit b8bfcde

Please sign in to comment.