From 956646f8e91a9073275385f7ad743a02a432ea42 Mon Sep 17 00:00:00 2001 From: Ashoat Tevosyan Date: Wed, 25 Sep 2024 16:32:34 -0400 Subject: [PATCH] [native] Temporary changes for staff release --- native/cpp/CommonCpp/Tools/StaffUtils.cpp | 2 +- native/utils/staff-utils.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/native/cpp/CommonCpp/Tools/StaffUtils.cpp b/native/cpp/CommonCpp/Tools/StaffUtils.cpp index c630858676..62785ebe92 100644 --- a/native/cpp/CommonCpp/Tools/StaffUtils.cpp +++ b/native/cpp/CommonCpp/Tools/StaffUtils.cpp @@ -2,6 +2,6 @@ namespace comm { bool StaffUtils::isStaffRelease() { - return false; + return true; } } // namespace comm diff --git a/native/utils/staff-utils.js b/native/utils/staff-utils.js index c762280900..3464e92177 100644 --- a/native/utils/staff-utils.js +++ b/native/utils/staff-utils.js @@ -2,7 +2,7 @@ import { useIsCurrentUserStaff } from 'lib/shared/staff-utils.js'; -const isStaffRelease = false; +const isStaffRelease = true; function useStaffCanSee(): boolean { const isCurrentUserStaff = useIsCurrentUserStaff();