Fix store name
This commit is contained in:
parent
1fee4c1946
commit
82f107d835
1 changed files with 2 additions and 2 deletions
|
@ -96,13 +96,13 @@ export const useAlbumArtistStore = create<AlbumArtistSlice>()(
|
|||
},
|
||||
},
|
||||
})),
|
||||
{ name: 'store_artist' },
|
||||
{ name: 'store_album_artist' },
|
||||
),
|
||||
{
|
||||
merge: (persistedState, currentState) => {
|
||||
return merge(currentState, persistedState);
|
||||
},
|
||||
name: 'store_artist',
|
||||
name: 'store_album_artist',
|
||||
version: 1,
|
||||
},
|
||||
),
|
||||
|
|
Reference in a new issue