fix: update error handling to match new API (#7117)

This commit is contained in:
Ben McCann 2024-02-14 07:25:15 -08:00 committed by GitHub
parent 6adff50f0a
commit 2906950188
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 7 deletions

View file

@ -14,7 +14,6 @@ import {
type UserResponseDto,
} from '@immich/sdk';
import { common } from '@immich/sdk/axios';
import type { AxiosError } from 'axios';
import { get } from 'svelte/store';
interface UpdateParamAction {
@ -135,8 +134,6 @@ export const getAssetJobMessage = (job: AssetJobName) => {
return messages[job];
};
export type ApiError = AxiosError<{ message: string }>;
export const copyToClipboard = async (secret: string) => {
try {
await navigator.clipboard.writeText(secret);