1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00

Rename albums BLoC (.bloc.ts convention)

By convention now it's `album.bloc.ts`
This commit is contained in:
Jaime Baez 2022-09-07 16:04:50 +02:00
parent f476bd985b
commit 6b702b13e4
3 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
import NavigationBar from '$lib/components/shared-components/navigation-bar.svelte';
import SideBar from '$lib/components/shared-components/side-bar/side-bar.svelte';
import PlusBoxOutline from 'svelte-material-icons/PlusBoxOutline.svelte';
import { useAlbums } from './albums-bloc';
import { useAlbums } from './albums.bloc';
export let data: PageData;

View file

@ -1,5 +1,5 @@
import { jest, describe, it, expect, beforeEach, afterEach } from '@jest/globals';
import { useAlbums } from '../albums-bloc';
import { useAlbums } from '../albums.bloc';
import { api, CreateAlbumDto } from '@api';
import {
notificationController,