Fix notification sounds (#28316)
This commit is contained in:
parent
b5a1013ae3
commit
f3864db409
1 changed files with 1 additions and 1 deletions
|
@ -18,6 +18,6 @@ export const notificationsUpdate = createAction(
|
||||||
playSound: boolean;
|
playSound: boolean;
|
||||||
}) => ({
|
}) => ({
|
||||||
payload: args,
|
payload: args,
|
||||||
meta: { playSound: playSound ? { sound: 'boop' } : undefined },
|
meta: { sound: playSound ? 'boop' : undefined },
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue