refactor: album users modal (#18266)

This commit is contained in:
Daniel Dietzler 2025-05-13 19:20:44 +02:00 committed by GitHub
parent 3fdc1df89c
commit 668288ca20
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 16 additions and 20 deletions

View file

@ -369,7 +369,6 @@ export enum SettingInputFieldType {
export const AlbumPageViewMode = {
SELECT_THUMBNAIL: 'select-thumbnail',
SELECT_ASSETS: 'select-assets',
VIEW_USERS: 'view-users',
VIEW: 'view',
OPTIONS: 'options',
};
@ -377,7 +376,6 @@ export const AlbumPageViewMode = {
export type AlbumPageViewMode =
| typeof AlbumPageViewMode.SELECT_THUMBNAIL
| typeof AlbumPageViewMode.SELECT_ASSETS
| typeof AlbumPageViewMode.VIEW_USERS
| typeof AlbumPageViewMode.VIEW
| typeof AlbumPageViewMode.OPTIONS;