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 20752f3 commit eec4327Copy full SHA for eec4327
website/src/pages/auth/signin.tsx
@@ -170,9 +170,7 @@ const SigninButton = (props: ButtonProps) => {
170
colorScheme={buttonColorScheme}
171
color="white"
172
{...props}
173
- >
174
- Continue with Email
175
- </Button>
+ ></Button>
176
);
177
};
178
website/src/types/utils.ts
@@ -1,2 +1,3 @@
1
// https://github.com/ts-essentials/ts-essentials/blob/25cae45c162f8784e3cdae8f43783d0c66370a57/lib/types.ts#L437
2
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
3
export type ElementOf<T extends readonly any[]> = T extends readonly (infer ET)[] ? ET : never;
0 commit comments