Fix notification sounds (#28316)

This commit is contained in:
Claire 2023-12-11 15:23:30 +01:00 committed by GitHub
parent b5a1013ae3
commit f3864db409
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 },
}),
);