fix: typo of pubsub message
This commit is contained in:
parent
3cc22575cb
commit
c11a219c62
1 changed files with 1 additions and 4 deletions
|
|
@ -21,10 +21,7 @@ export class UserService {
|
|||
});
|
||||
|
||||
// Publish subscription for user updates
|
||||
await this.pubsub.publish(
|
||||
`user_settings/${user.uid}/updated`,
|
||||
updatedUser,
|
||||
);
|
||||
await this.pubsub.publish(`user/${user.uid}/updated`, updatedUser);
|
||||
|
||||
return E.right(updatedUser);
|
||||
} catch (e) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue