fix: update wot filter to remove mine_only for non admin users

This commit is contained in:
daniyal 2024-11-18 15:33:55 +05:00
parent 77c2e880f3
commit 6e4e580402

View File

@ -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