Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ReddixT committed Jan 3, 2023
1 parent 5167100 commit 379599b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lumium-space/pages/[workspaceId]/[[...pageId]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const Workspace: React.FC = () => {
p={6}
my={12}>
<Heading lineHeight={1.1} fontSize={{ base: '2xl', md: '3xl' }}>
Enter the password for "{workspace?.name}"
Enter the password for <em>{workspace?.name}</em>
</Heading>
<form onSubmit={formik.handleSubmit} data-cy={"form"}>
<FormControl id="password" isRequired>
Expand Down
4 changes: 3 additions & 1 deletion lumium-space/pages/spaces/create.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import React from 'react';
import { Authenticator } from '@components/security/Authenticator';
import CreateWorkspace from '@components/forms/CreateWorkspace';
import { useColorModeValue } from '@chakra-ui/react';

const MultistepForm: React.FC = () => {
let disclaimerButtonColor = useColorModeValue('green', 'darkgreen');
return (
<Authenticator>
<CreateWorkspace />
<CreateWorkspace disclaimerButtonColor={disclaimerButtonColor} />
</Authenticator >
);
};
Expand Down
1 change: 0 additions & 1 deletion lumium-space/src/sections/workspace/SideBar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { BoxProps, Link, Image, useDisclosure, Modal, ModalOverlay, ModalContent, ModalHeader, ModalCloseButton, ModalBody, Flex, Stack, CloseButton, Menu, MenuButton, Button, MenuList, MenuItem, Divider, Icon, FlexProps } from "@chakra-ui/react";
import { useColorModeValue } from "@chakra-ui/system";
import CreateWorkspace from "@components/forms/CreateWorkspace";
import { WorkspaceDTO, UserDTO } from "@types";
import { ReactElement, ReactText } from "react";
Expand Down

0 comments on commit 379599b

Please sign in to comment.