Fix linter error on NotificationBuilder
This commit is contained in:
parent
b2dbfbeaa2
commit
17c4347e98
@ -95,7 +95,7 @@ export default class NotificationBuilder {
|
||||
redirection_url: "",
|
||||
created_at: new Date(),
|
||||
updated_at: new Date(),
|
||||
user: [user] || [],
|
||||
user: user ? [user] : [],
|
||||
});
|
||||
}
|
||||
|
||||
@ -105,7 +105,7 @@ export default class NotificationBuilder {
|
||||
redirection_url: "",
|
||||
created_at: new Date(),
|
||||
updated_at: new Date(),
|
||||
user: [user] || [],
|
||||
user: user ? [user] : [],
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user