1
0
Fork 0
forked from gitea/nas

Fix Redux types (#26899)

This commit is contained in:
Renaud Chaput 2023-09-12 12:18:19 +02:00 committed by GitHub
parent 9ac9aca142
commit 0712cc2b99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 7 deletions

View file

@ -34,10 +34,7 @@ const play = (audio: HTMLAudioElement) => {
void audio.play();
};
export const soundsMiddleware = (): Middleware<
Record<string, never>,
RootState
> => {
export const soundsMiddleware = (): Middleware<unknown, RootState> => {
const soundCache: Record<string, HTMLAudioElement> = {};
void ready(() => {