diff --git a/webui/src/Containers/NewProject/MainContent/ForkAndRun/ForkAndRun.tsx b/webui/src/Containers/NewProject/MainContent/ForkAndRun/ForkAndRun.tsx index 6aa07d4..6ab1081 100644 --- a/webui/src/Containers/NewProject/MainContent/ForkAndRun/ForkAndRun.tsx +++ b/webui/src/Containers/NewProject/MainContent/ForkAndRun/ForkAndRun.tsx @@ -7,6 +7,9 @@ export type ForkAndRunProps = { }; const ForkAndRun: FC = ({ loading }) => { + const text = window.location.hostname.includes("app.fluentci.io") + ? "Fork & Run" + : "Clone & Run"; return ( <> {loading && ( @@ -21,7 +24,7 @@ const ForkAndRun: FC = ({ loading }) => { }} /> )} - {!loading && Fork & Run} + {!loading && {text}} ); };