@farhankhalaf I don't think this approach is right:
|
const E2E_BOOT_PREFS_DISABLED = import.meta.env.VITE_NIXMAC_SKIP_PERMISSIONS === "true"; |
Because it seems to be confusing two different things into one environment variable, and basically if you look at how E2E_BOOT_PREFS_DISABLED ends up getting used, the net effect is that it's impossible to develop or test Sentry in the "normal" local-dev configuration with the permissions checks skipped.
But I'm not sure the right way to fix this, because I'm confused by what the real usage of E2E_BOOT_PREFS_DISABLEDshould be. Can you please look, thanks.
@farhankhalaf I don't think this approach is right:
nixmac/apps/native/src/main.tsx
Line 65 in 63e3b28
Because it seems to be confusing two different things into one environment variable, and basically if you look at how
E2E_BOOT_PREFS_DISABLEDends up getting used, the net effect is that it's impossible to develop or test Sentry in the "normal" local-dev configuration with the permissions checks skipped.But I'm not sure the right way to fix this, because I'm confused by what the real usage of
E2E_BOOT_PREFS_DISABLEDshould be. Can you please look, thanks.