Skip to content

Commit

Permalink
Disabling tutorials (#50)
Browse files Browse the repository at this point in the history
Tutorials should be a hidden UI element by default in grist-desktop.

Test Plan:
Manual, build grist-desktop in normal way and run npm run electron:preview, tutorial
card should be hidden.

PR: #50
  • Loading branch information
berhalak committed Sep 17, 2024
1 parent a1a1694 commit 0f60d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/app/electron/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export async function loadConfig() {
process.env.GRIST_SERVE_SAME_ORIGIN = "true";
process.env.GRIST_DEFAULT_PRODUCT = "Free";
process.env.GRIST_ORG_IN_PATH = "true";
process.env.GRIST_HIDE_UI_ELEMENTS = "helpCenter,billing,templates,multiSite,multiAccounts";
process.env.GRIST_HIDE_UI_ELEMENTS = "helpCenter,billing,templates,multiSite,multiAccounts,tutorials";
process.env.GRIST_CONTACT_SUPPORT_URL = packageJson.repository + "/issues";
if (process.env.GRIST_DESKTOP_AUTH !== "mixed") {
process.env.GRIST_FORCE_LOGIN = "true";
Expand Down

0 comments on commit 0f60d1a

Please sign in to comment.