We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4b05eb commit c262971Copy full SHA for c262971
workspaces/frontend/src/shared/utilities/const.ts
@@ -22,6 +22,8 @@ export const MOCK_API_ENABLED = process.env.MOCK_API_ENABLED === 'true';
22
/** Set HIDE_PRE_GA_BANNER=true to hide the pre-GA banner; shown by default. */
23
export const HIDE_PRE_GA_BANNER = process.env.HIDE_PRE_GA_BANNER === 'true';
24
/** Learn more link in the pre-GA banner; default kubeflow.org. */
25
-export const PRE_GA_LEARN_MORE_LINK = process.env.PRE_GA_LEARN_MORE_LINK || 'https://kubeflow.org';
+export const PRE_GA_LEARN_MORE_LINK =
26
+ process.env.PRE_GA_LEARN_MORE_LINK ||
27
+ 'https://www.kubeflow.org/docs/components/notebooks/notebooks-v2-pre-ga-banner';
28
29
export const CONTENT_TYPE_KEY = 'Content-Type';
0 commit comments