Skip to content

Commit f1c9fc4

Browse files
committed
fix: 🐛 typography, rm dead table
1 parent b646697 commit f1c9fc4

5 files changed

Lines changed: 1071 additions & 35 deletions

File tree

src/components/availability/invite-members-dialog.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,13 @@ export function InviteMembersDialog({
208208
)}
209209

210210
<div>
211-
<p className="mb-1.5 text-gray-500 text-sm">Or Share Invite Link</p>
211+
<Typography
212+
variant="caption"
213+
color="textSecondary"
214+
className="mb-4"
215+
>
216+
Or Share Invite Link
217+
</Typography>
212218
<div className="flex items-center gap-2">
213219
<TextField
214220
value={meetingLink}
@@ -228,9 +234,9 @@ export function InviteMembersDialog({
228234
{copied ? "Copied" : "Copy"}
229235
</Button>
230236
</div>
231-
<p className="mt-1 text-gray-400 text-xs">
237+
<Typography variant="caption" color="textSecondary">
232238
Anyone with this link can view the meeting
233-
</p>
239+
</Typography>
234240
</div>
235241

236242
{error && (
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP TABLE "meeting_invite_responses" CASCADE;

0 commit comments

Comments
 (0)