[Glitch] Fix notification sounds

Port f3864db409 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
th-new
Claire 2023-12-11 15:23:30 +01:00
parent 70652e49eb
commit 93c71e2c7c
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ export const notificationsUpdate = createAction(
playSound: boolean;
}) => ({
payload: args,
meta: { playSound: playSound ? { sound: 'boop' } : undefined },
meta: { sound: playSound ? 'boop' : undefined },
}),
);