fix(ui): move getItemsPerRow to frontend src dir

Not sure how but it was in repo root

Closes #8509
This commit is contained in:
psychedelicious
2025-09-01 14:49:54 +10:00
parent 3c9c49f7d9
commit e6a763b887
3 changed files with 2 additions and 2 deletions

View File

@@ -27,8 +27,8 @@ import { VirtuosoGrid } from 'react-virtuoso';
import { imagesApi, useImageDTO, useStarImagesMutation, useUnstarImagesMutation } from 'services/api/endpoints/images';
import { useDebounce } from 'use-debounce';
import { getItemsPerRow } from '../../../../../../../getItemsPerRow';
import { getItemIndex } from './getItemIndex';
import { getItemsPerRow } from './getItemsPerRow';
import { GalleryImage, GalleryImagePlaceholder } from './ImageGrid/GalleryImage';
import { GallerySelectionCountTag } from './ImageGrid/GallerySelectionCountTag';
import { scrollIntoView } from './scrollIntoView';

View File

@@ -24,8 +24,8 @@ import { VirtuosoGrid } from 'react-virtuoso';
import { videosApi } from 'services/api/endpoints/videos';
import { useDebounce } from 'use-debounce';
import { getItemsPerRow } from '../../../../../../../getItemsPerRow';
import { getItemIndex } from './getItemIndex';
import { getItemsPerRow } from './getItemsPerRow';
import { GallerySelectionCountTag } from './ImageGrid/GallerySelectionCountTag';
import { GalleryVideo } from './ImageGrid/GalleryVideo';
import { GalleryVideoPlaceholder } from './ImageGrid/GalleryVideoPlaceholder';