diff --git a/native/utils/staff-utils.js b/native/utils/staff-utils.js index 66d0e225f..2a7d48414 100644 --- a/native/utils/staff-utils.js +++ b/native/utils/staff-utils.js @@ -1,21 +1,21 @@ // @flow import { isStaff } from 'lib/shared/user-utils.js'; import { useSelector } from '../redux/redux-utils.js'; -const isStaffRelease = false; +const isStaffRelease = true; function useIsCurrentUserStaff(): boolean { const isCurrentUserStaff = useSelector(state => state.currentUserInfo?.id ? isStaff(state.currentUserInfo.id) : false, ); return isCurrentUserStaff; } function useStaffCanSee(): boolean { const isCurrentUserStaff = useIsCurrentUserStaff(); return __DEV__ || isStaffRelease || isCurrentUserStaff; } export { isStaffRelease, useIsCurrentUserStaff, useStaffCanSee };