Fix fallback url for git documentation (#14430)

This commit is contained in:
f0c1s 2022-06-10 08:28:19 +05:30 committed by GitHub
parent 3b62e3f26a
commit 4e2f6d902a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,7 +144,7 @@ export const getUseGlobalProfile = (state: AppState) =>
state.ui.gitSync.useGlobalProfile;
const FALLBACK_GIT_SYNC_DOCS_URL =
"https://docs.appsmith.com/core-concepts/git-sync";
"https://docs.appsmith.com/core-concepts/version-control-with-git";
export const getDiscardDocUrl = (state: AppState) =>
state.ui.gitSync.gitStatus?.discardDocUrl || FALLBACK_GIT_SYNC_DOCS_URL;