Skip to content

Commit

Permalink
Remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-gordon committed Jan 11, 2024
1 parent 0bb50f5 commit 4d6f273
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/components/VersionCheck.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function VersionCheck() {
<AlertDialog.Root open={showModal}>
<AlertDialog.Portal>
<AlertDialog.Overlay className="bg-foreground dark:bg-background opacity-50 data-[state=open]:animate-overlayShow fixed inset-0" />
<AlertDialog.Content className="data-[state=open]:animate-contentShow bg-background text-foreground dark:bg-foreground dark:text-background fixed top-[50%] left-[50%] max-h-[85vh] w-[90vw] max-w-[500px] translate-x-[-50%] translate-y-[-50%] rounded bg-background p-4 shadow-lg focus:outline-none z-50 grid gap-4 justify-items-center">
<AlertDialog.Content className="data-[state=open]:animate-contentShow text-foreground dark:bg-foreground dark:text-background fixed top-[50%] left-[50%] max-h-[85vh] w-[90vw] max-w-[500px] translate-x-[-50%] translate-y-[-50%] rounded bg-background p-4 shadow-lg focus:outline-none z-50 grid gap-4 justify-items-center">
<AlertDialog.Title className="text-2xl font-bold text-center">
<Trans>Reload to Update</Trans>
</AlertDialog.Title>
Expand Down
2 changes: 1 addition & 1 deletion app/src/lib/useMicrophoneStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type MicrophoneStore = {
data: Blob[];
};

export const useMicrophoneStore = create<MicrophoneStore>((set) => ({
export const useMicrophoneStore = create<MicrophoneStore>((_set) => ({
isMicOn: false,
isRecording: false,
mediaRecorder: null,
Expand Down
2 changes: 1 addition & 1 deletion app/src/ui/Shared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const Page = ({
return (
<div
className={classNames(
"px-4 py-16 content-start grid w-full mx-auto grid",
"px-4 py-16 content-start w-full mx-auto grid",
{
"max-w-xl gap-2": size === "sm",
"max-w-3xl gap-10": size === "md",
Expand Down

0 comments on commit 4d6f273

Please sign in to comment.