Fix cache imports

This commit is contained in:
Sam Becker 2024-02-09 13:54:41 -06:00
parent 235b10e326
commit 97fdedadba
3 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
import { getStorageUploadUrlsNoStore } from '@/services/storage/cache';
import {
getStorageUploadUrlsNoStore,
getPhotosCountIncludingHiddenCached,
getUniqueTagsCached,
} from '@/cache';
} from '@/photo/cache';
import {
PATH_ADMIN_PHOTOS,
PATH_ADMIN_TAGS,

View File

@ -1,5 +1,5 @@
import MoreComponents from '@/components/MoreComponents';
import { getPhotosCached } from '@/cache';
import { getPhotosCached } from '@/photo/cache';
import PhotoGrid from './PhotoGrid';
export function MorePhotosGrid({

View File

@ -1,6 +1,6 @@
import MoreComponents from '@/components/MoreComponents';
import PhotosLarge from './PhotosLarge';
import { getPhotosCached } from '@/cache';
import { getPhotosCached } from '@/photo/cache';
export function MorePhotosRoot({
initialOffset,