diff --git a/site/src/components/Welcome/Welcome.tsx b/site/src/components/Welcome/Welcome.tsx index 433f9d5353..ea5f8ca834 100644 --- a/site/src/components/Welcome/Welcome.tsx +++ b/site/src/components/Welcome/Welcome.tsx @@ -1,14 +1,6 @@ import type { FC, PropsWithChildren } from "react"; import { CoderIcon } from "../Icons/CoderIcon"; -const Language = { - defaultMessage: ( - <> - Welcome to Coder - - ), -}; - type WelcomeProps = Readonly< PropsWithChildren<{ className?: string; @@ -21,8 +13,8 @@ export const Welcome: FC = ({ children, className }) => { -

- {children || Language.defaultMessage} +

+ {children || "Welcome to Coder"}

);