Skip to content

Commit

Permalink
Merge pull request #289 from /issues/288-macos2
Browse files Browse the repository at this point in the history
Issues/288 macos2
  • Loading branch information
MayGo authored Nov 13, 2024
2 parents 599cd9e + 24a0530 commit 1658f62
Show file tree
Hide file tree
Showing 85 changed files with 8,551 additions and 9,293 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "3.19.22",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^2.0.11",
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.3.7",
"@datepicker-react/hooks": "^2.8.4",
"@emotion/react": "^11.10.5",
Expand Down
164 changes: 0 additions & 164 deletions client/src/components/AuthButton.tsx

This file was deleted.

48 changes: 0 additions & 48 deletions client/src/components/AuthCheck.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion client/src/components/Datepicker/MonthSelect.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Select } from '@chakra-ui/select';
import { Select } from '@chakra-ui/react';

import React from 'react';

Expand Down
4 changes: 2 additions & 2 deletions client/src/components/Datepicker/YearSelect.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Select } from '@chakra-ui/select';
import { Select } from '@chakra-ui/react';
import { range } from 'lodash';
import React from 'react';

Expand All @@ -8,7 +8,7 @@ export const YearSelect = ({ value, onChange }) => {

return (
<Select placeholder="Select year" value={value} onChange={onChange}>
{years.map(year => (
{years.map((year) => (
<option key={year} value={year}>
{year}
</option>
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { Flex, Box, Center, Link } from '@chakra-ui/layout';
import { useColorModeValue } from '@chakra-ui/color-mode';
import { Flex, Box, Center, Link } from '@chakra-ui/react';
import { useColorModeValue } from '@chakra-ui/react';
import { TocklerLogo } from './TocklerLogo';
import { TocklerLogoText } from './TocklerLogoText';

Expand Down
4 changes: 2 additions & 2 deletions client/src/components/Header/MenuItem.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { Link as RouterLink } from 'react-router-dom';
import { Box, Center } from '@chakra-ui/layout';
import { Button } from '@chakra-ui/button';
import { Box, Center } from '@chakra-ui/react';
import { Button } from '@chakra-ui/react';

export const MenuItem = ({ to, icon, title }) => (
<Box>
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/MainLayout/HeaderMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
AiOutlineQuestionCircle,
} from 'react-icons/ai';
import React from 'react';
import { Box } from '@chakra-ui/layout';
import { Box } from '@chakra-ui/react';
import { ColorModeSwitcher } from '../ColorModeSwitcher';
import { Header } from '../Header/Header';
import { MenuItem } from '../Header/MenuItem';
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/MainLayout/MainLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box } from '@chakra-ui/layout';
import { Box } from '@chakra-ui/react';

import React from 'react';
import { Outlet } from 'react-router-dom';
Expand Down
Loading

0 comments on commit 1658f62

Please sign in to comment.