Skip to content

Commit 9aeaa70

Browse files
committed
fixing build bugs
1 parent 24cbdae commit 9aeaa70

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

scripts/preview/Figma.stories.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ export const AvatarGroupStory: StoryObj<
115115
},
116116
render: ({ spacing, ...args }) => (
117117
<AvatarGroup
118-
spacing={spacing === "spaced" ? "100" : "200"}
119-
overlap={spacing === "overlap"}
118+
spacing={spacing === "spaced" ? "100" : "negative-200"}
120119
max={3}
121120
{...args}
122121
>

src/compositions/Footers/Footers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
TextStrong,
1212
} from "primitives";
1313

14-
export type FooterProps = Omit<SectionProps, "variant" | "padding">;
14+
export type FooterProps = Omit<SectionProps, "variant" | "padding" | "src">;
1515
export function Footer({ className, ...props }: FooterProps) {
1616
const { isMobile, isTablet, isTabletDown } = useMediaQuery();
1717
const listDensity = isTabletDown ? "tight" : "default";

0 commit comments

Comments
 (0)