From 5f3b1dadce265da039de088d22c317af7fc14c07 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 30 Jun 2023 22:25:36 -0700 Subject: [PATCH] Remove unused style import --- components/common/Dialog/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/common/Dialog/index.tsx b/components/common/Dialog/index.tsx index bda1c12e..aba0453c 100644 --- a/components/common/Dialog/index.tsx +++ b/components/common/Dialog/index.tsx @@ -2,8 +2,6 @@ import React, { PropsWithChildren, useEffect, useState } from 'react' import * as DialogPrimitive from '@radix-ui/react-dialog' import { useLockedBody } from 'usehooks-ts' -import styles from './index.module.scss' - interface Props extends DialogPrimitive.DialogProps {} export const Dialog = ({ children, ...props }: PropsWithChildren) => {