mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
fix
This commit is contained in:
parent
80a75f73ba
commit
abe52f25f1
3 changed files with 6925 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -5,7 +5,6 @@ drizzle.config.ts
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
node_modules
|
node_modules
|
||||||
bun.lock
|
|
||||||
.pnp
|
.pnp
|
||||||
.pnp.js
|
.pnp.js
|
||||||
|
|
||||||
|
|
@ -44,4 +43,3 @@ yarn-error.log*
|
||||||
.venv
|
.venv
|
||||||
.arch
|
.arch
|
||||||
__pycache__
|
__pycache__
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
import { cn } from "@lib/utils";
|
import { cn } from "@lib/utils";
|
||||||
import { Button } from "@ui/components/button";
|
import { Button } from "@ui/components/button";
|
||||||
|
|
||||||
export interface ExternalAuthButtonProps extends React.ComponentProps<"button"> {
|
export interface ExternalAuthButtonProps
|
||||||
|
extends React.ComponentProps<typeof Button> {
|
||||||
authProvider: string;
|
authProvider: string;
|
||||||
authIcon: React.ReactNode;
|
authIcon: React.ReactNode;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue