fix: update wot filter to remove mine_only for non admin users
This commit is contained in:
parent
77c2e880f3
commit
6e4e580402
@ -116,15 +116,17 @@ export const ModFilter = React.memo(
|
||||
{Object.values(WOTFilterOptions).map((item, index) => {
|
||||
// when user is not logged in
|
||||
if (
|
||||
(item === WOTFilterOptions.Site_And_Mine ||
|
||||
item === WOTFilterOptions.Mine_Only) &&
|
||||
item === WOTFilterOptions.Site_And_Mine &&
|
||||
!userState.auth
|
||||
) {
|
||||
return null
|
||||
}
|
||||
|
||||
// when logged in user not admin
|
||||
if (item === WOTFilterOptions.None) {
|
||||
if (
|
||||
item === WOTFilterOptions.None ||
|
||||
item === WOTFilterOptions.Mine_Only
|
||||
) {
|
||||
const isAdmin =
|
||||
userState.user?.npub ===
|
||||
import.meta.env.VITE_REPORTING_NPUB
|
||||
|
Loading…
Reference in New Issue
Block a user