Skip to content

Commit 2201b4e

Browse files
committed
small updates and fixes
1 parent bb6939e commit 2201b4e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/_components/common/Typography.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const variantStyles = {
1717
};
1818

1919
export const Typography: React.FC<TypographyProps> = ({
20-
as: Component = "p",
20+
as: Component = "span",
2121
variant = "body",
2222
className,
2323
children,

src/app/trips/[id]/itinerary/_components/NewItineraryModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function NewItineraryModal({ date, onConfirm }: ModalProps) {
125125
return (
126126
<Dialog open={open} onOpenChange={setOpen}>
127127
<DialogTrigger asChild>
128-
<Button>
128+
<Button className="mt-3">
129129
<Icon name="Plus" className="inline" size="16" />
130130
Add Item for {formattedDate}
131131
</Button>

0 commit comments

Comments
 (0)