mirror of
https://github.com/immich-app/immich.git
synced 2025-12-03 17:19:52 +09:00
chore(web): generate API functions with a single argument (#2568)
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
export let shared: boolean;
|
||||
|
||||
onMount(async () => {
|
||||
const { data } = await api.albumApi.getAllAlbums(shared || undefined);
|
||||
const { data } = await api.albumApi.getAllAlbums({ shared: shared || undefined });
|
||||
albums = data;
|
||||
|
||||
recentAlbums = albums
|
||||
|
||||
Reference in New Issue
Block a user