Skip to content

Commit 78ea5b8

Browse files
author
jamesmoore
committed
use consistent naming
1 parent 0823048 commit 78ea5b8

File tree

9 files changed

+8
-8
lines changed

9 files changed

+8
-8
lines changed

SDMeta.Web/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { GalleryPage } from './pages/GalleryPage'
1+
import { GalleryPage } from './pages/gallery-page'
22

33
function App() {
44
return <GalleryPage />
File renamed without changes.
File renamed without changes.

SDMeta.Web/src/features/gallery/ImageDetailsFooter.tsx renamed to SDMeta.Web/src/features/gallery/image-details-footer.tsx

File renamed without changes.
File renamed without changes.
File renamed without changes.

SDMeta.Web/src/features/gallery/VirtualizedGallery.tsx renamed to SDMeta.Web/src/features/gallery/virtualized-gallery.tsx

File renamed without changes.

SDMeta.Web/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createRoot } from 'react-dom/client'
33
import { BrowserRouter } from 'react-router-dom'
44
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
55
import './index.css'
6-
import App from './App'
6+
import App from './app'
77

88
const queryClient = new QueryClient({
99
defaultOptions: {
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import { useGalleryQueryState } from '../hooks/useGalleryQueryState'
66
import { useScanLifecycle } from '../hooks/useScanLifecycle'
77
import type { ImageDetailResponse } from '../types/api'
88
import { GAP, TILE_WIDTH, buildRows, type GalleryCard, type PagedImages } from '../features/gallery/gallery-model'
9-
import { FullscreenViewer } from '../features/gallery/FullscreenViewer'
10-
import { GalleryToolbar } from '../features/gallery/GalleryToolbar'
11-
import { ImageDetailsFooter, type FooterSelection } from '../features/gallery/ImageDetailsFooter'
12-
import { ScanToast } from '../features/gallery/ScanToast'
13-
import { SettingsDialog } from '../features/gallery/SettingsDialog'
14-
import { VirtualizedGallery } from '../features/gallery/VirtualizedGallery'
9+
import { FullscreenViewer } from '../features/gallery/fullscreen-viewer'
10+
import { GalleryToolbar } from '../features/gallery/gallery-toolbar'
11+
import { ImageDetailsFooter, type FooterSelection } from '../features/gallery/image-details-footer'
12+
import { ScanToast } from '../features/gallery/scan-toast'
13+
import { SettingsDialog } from '../features/gallery/settings-dialog'
14+
import { VirtualizedGallery } from '../features/gallery/virtualized-gallery'
1515

1616
export function GalleryPage() {
1717
const [viewportWidth, setViewportWidth] = useState(1200)

0 commit comments

Comments
 (0)