mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-21 16:55:25 +03:00
Fix wrong isSelf logic
This commit is contained in:
parent
e96b1433ff
commit
ca71d45a77
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ function Notification({ notification }) {
|
|||
const actualStatusID = status?.reblog?.id || status?.id;
|
||||
|
||||
const currentAccount = store.session.get('currentAccount');
|
||||
const isSelf = currentAccount?.id === account?.id;
|
||||
const isSelf = currentAccount === account?.id;
|
||||
const isVoted = status?.poll?.voted;
|
||||
|
||||
const text =
|
||||
|
|
Loading…
Reference in a new issue