chore: migrate to immich/ui confirm modal (#20114)

This commit is contained in:
Daniel Dietzler 2025-07-23 22:56:56 +02:00 committed by GitHub
parent bc8cb9b671
commit c1c9f30ea4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 15 additions and 73 deletions

View file

@ -12,8 +12,8 @@ describe('ChangeDate component', () => {
const getDateInput = () => screen.getByLabelText('date_and_time') as HTMLInputElement;
const getTimeZoneInput = () => screen.getByLabelText('timezone') as HTMLInputElement;
const getCancelButton = () => screen.getByText('cancel');
const getConfirmButton = () => screen.getByText('confirm');
const getCancelButton = () => screen.getByText('Cancel');
const getConfirmButton = () => screen.getByText('Confirm');
beforeEach(() => {
vi.stubGlobal('IntersectionObserver', getIntersectionObserverMock());