Skip to content

Commit 5f9ec1a

Browse files
authored
Merge branch 'main' into greg/tool-2837-sdk-smart-accounts-use-6492-even-when-already-deployed
2 parents 7846be4 + 66f1337 commit 5f9ec1a

File tree

99 files changed

+994
-602
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+994
-602
lines changed

.changeset/cyan-shrimps-battle.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fair-planes-doubt.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/little-beds-dress.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/metal-mails-ring.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.changeset/pink-gorillas-try.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/yellow-experts-sparkle.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

apps/dashboard/src/@/api/team.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export async function getTeams() {
6464
return null;
6565
}
6666

67-
type TeamNebulWaitList = {
67+
type TeamNebulaWaitList = {
6868
onWaitlist: boolean;
6969
createdAt: null | string;
7070
};
@@ -86,7 +86,7 @@ export async function getTeamNebulaWaitList(teamSlug: string) {
8686
);
8787

8888
if (res.ok) {
89-
return (await res.json()).result as TeamNebulWaitList;
89+
return (await res.json()).result as TeamNebulaWaitList;
9090
}
9191

9292
return null;

apps/dashboard/src/@/components/ui/button.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const AllVariants: Story = {
2020

2121
function Component() {
2222
return (
23-
<div className="flex min-h-screen flex-col gap-6 bg-background p-6 text-foregroun">
23+
<div className="flex min-h-screen flex-col gap-6 bg-background p-6 text-foreground">
2424
<Variants size="default" />
2525
<Variants size="sm" />
2626
<Variants size="icon" />
@@ -58,7 +58,7 @@ function Variants(props: {
5858
{props.size === "icon" ? (
5959
<StarIcon className="size-4" />
6060
) : (
61-
"Desctructive"
61+
"Destructive"
6262
)}
6363
</Button>
6464
</div>

apps/dashboard/src/@/components/ui/button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const buttonVariants = cva(
1515
destructive:
1616
"bg-destructive hover:bg-destructive/90 text-semibold text-destructive-foreground ",
1717
outline:
18-
"border border-input bg-transaprent hover:bg-accent hover:text-accent-foreground text-semibold",
18+
"border border-input bg-transparent hover:bg-accent hover:text-accent-foreground text-semibold",
1919
secondary:
2020
"bg-secondary hover:bg-secondary/80 text-semibold text-secondary-foreground ",
2121
ghost: "hover:bg-accent text-semibold hover:text-accent-foreground",

apps/dashboard/src/@/components/ui/select.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function randomName() {
3131

3232
function Component() {
3333
return (
34-
<div className="flex min-h-screen flex-col gap-10 bg-background p-6 text-foregroun">
34+
<div className="flex min-h-screen flex-col gap-10 bg-background p-6 text-foreground">
3535
<BadgeContainer label="5 items, no placeholder, no label, value filled">
3636
<SelectDemo listItems={5} selectFirst />
3737
</BadgeContainer>

0 commit comments

Comments
 (0)