From 20197a546cd89875bf843add7af359ad7290e1c9 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Thu, 15 Feb 2024 14:55:06 +0100 Subject: [PATCH] fix: wording --- .../src/pages/export/index.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/taxonomy-editor-frontend/src/pages/export/index.tsx b/taxonomy-editor-frontend/src/pages/export/index.tsx index f354d132..ea9f9edb 100644 --- a/taxonomy-editor-frontend/src/pages/export/index.tsx +++ b/taxonomy-editor-frontend/src/pages/export/index.tsx @@ -44,13 +44,13 @@ const ExportTaxonomyToGithub = ({ .then(async (response) => { const responseBody = await response.json(); if (!response.ok) { - throw new Error(responseBody?.detail ?? "Unable to export to Github"); + throw new Error(responseBody?.detail ?? "Unable to export to GitHub"); } else { setPullRequestURL(responseBody); } }) .catch(() => { - setErrorMessage("Unable to export to Github"); + setErrorMessage("Unable to export to GitHub"); }) .finally(() => { setIsExportingToGithub(false); @@ -67,7 +67,7 @@ const ExportTaxonomyToGithub = ({ sx={{ mt: 10, flexGrow: 1, textAlign: "center" }} variant="h5" > - Click the button below to export to Github + Click the button below to export to GitHub {/* Dialog box to the PR link */} 0}> - Your changes have been exported to Github! + Your changes have been exported to GitHub! - Thank you for contributing! A maintainer will review your changes + Thank you for contributing! A community member will review your changes soon. - +