Skip to content

Commit

Permalink
add space in string literal in case competition name is not provided
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisibrahimd committed Aug 26, 2022
1 parent 3e42825 commit 75e1fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PreCompBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function PreCompBanner() {
<>
<Box mt={2} sx={{textAlign: "center"}}>
<Typography variant={"h4"}>
Welcome to the <strong>{ process.env.REACT_APP_COMPETITION_NAME }</strong> Competition!
Welcome to the <strong>{ `${process.env.REACT_APP_COMPETITION_NAME} ` }</strong>Competition!
</Typography>
<Typography variant={"h6"}>
This window will automatically reload once the first round is
Expand Down

0 comments on commit 75e1fb7

Please sign in to comment.