Skip to content

Commit

Permalink
Merge pull request #14635 from lokanandaprabhu/feature/OCPBUGS-2956
Browse files Browse the repository at this point in the history
OCPBUGS-2956: 'create a Project' button on Getting started page doesn't work
  • Loading branch information
openshift-merge-bot[bot] authored Jan 8, 2025
2 parents dbb970f + e734ace commit 92d8251
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ export const CreateAProjectButton: React.FC<CreateAProjectButtonProps> = ({ open
const { t } = useTranslation();
const canCreateNs = useFlag(FLAGS.CAN_CREATE_NS);
const canCreateProject = useFlag(FLAGS.CAN_CREATE_PROJECT);
const isStartGuideEnabled = useFlag(FLAGS.SHOW_OPENSHIFT_START_GUIDE);
if (isStartGuideEnabled) {
return null;
}
if (canCreateProject) {
return (
<Trans t={t} ns="devconsole">
Expand Down

0 comments on commit 92d8251

Please sign in to comment.