🔥(frontend) delete duplicated frontend imports

Remove duplicate import statements to improve code clarity and potentially
reduce bundle size through better tree-shaking optimization.
This commit is contained in:
lebaudantoine
2025-06-30 18:00:03 +02:00
committed by aleb_the_flash
parent 459280b384
commit b265c3c7cb
2 changed files with 2 additions and 4 deletions

View File

@@ -4,10 +4,9 @@ import { Button, Menu } from '@/primitives'
import { styled } from '@/styled-system/jsx'
import { navigateTo } from '@/navigation/navigateTo'
import { Screen } from '@/layout/Screen'
import { generateRoomId } from '@/features/rooms'
import { generateRoomId, useCreateRoom } from '@/features/rooms'
import { useUser, UserAware } from '@/features/auth'
import { JoinMeetingDialog } from '../components/JoinMeetingDialog'
import { useCreateRoom } from '@/features/rooms'
import { RiAddLine, RiLink } from '@remixicon/react'
import { LaterMeetingDialog } from '@/features/home/components/LaterMeetingDialog'
import { IntroSlider } from '@/features/home/components/IntroSlider'

View File

@@ -1,8 +1,7 @@
import { Button, TextArea } from '@/primitives'
import { HStack } from '@/styled-system/jsx'
import { RiSendPlane2Fill } from '@remixicon/react'
import { useState, useEffect } from 'react'
import { RefObject } from 'react'
import { useState, useEffect, RefObject } from 'react'
import { useTranslation } from 'react-i18next'
import { css } from '@/styled-system/css'