Skip to content

Commit

Permalink
remove bugged in vs code alias ui
Browse files Browse the repository at this point in the history
  • Loading branch information
dEdmishka committed Jan 21, 2024
1 parent a6203b2 commit 329c6f0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/app/auth/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import FormAuth from '@/components/pages/auth/FormAuth'
import ImageCard from '@/components/pages/auth/ImageCard'
import IconGolub from '@/components/ui/icons/IconGolub'
import ButtonThemeToggle from '@/components/ui/index/ButtonThemeToggle'
import Layout from '@/components/ui/index/Layout'
import IconGolub from '@/ui/icons/IconGolub'

export default function Auth() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import IconChange from '@/ui/icons/IconChange'
import IconChange from '@/components/ui/icons/IconChange'
import Image from 'next/image'

export default function Home() {
Expand Down
12 changes: 6 additions & 6 deletions src/components/Pages/Auth/FormAuth.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
'use client'

import { Button } from '@/ui/button'
import Form from '@/ui/form/Form'
import FormCheckbox from '@/ui/form/FormCheckbox'
import FormControl from '@/ui/form/FormControl'
import FormInput from '@/ui/form/FormInput'
import FormLabel from '@/ui/form/FormLabel'
import { Button } from '@/components/ui/button'
import Form from '@/components/ui/form/Form'
import FormCheckbox from '@/components/ui/form/FormCheckbox'
import FormControl from '@/components/ui/form/FormControl'
import FormInput from '@/components/ui/form/FormInput'
import FormLabel from '@/components/ui/form/FormLabel'
import { FC, FormEvent } from 'react'

const AuthForm: FC = () => {
Expand Down
4 changes: 2 additions & 2 deletions src/components/UI/Form/FormCheckbox.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import FormLabel from '@/ui/form/FormLabel'
import IconCheck from '@/ui/icons/IconCheck'
import FormLabel from '@/components/ui/form/FormLabel'
import IconCheck from '@/components/ui/icons/IconCheck'
import { classnames } from '@/utils'
import { FC, InputHTMLAttributes, ReactNode } from 'react'

Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
}
],
"paths": {
"@/*": ["src/*"],
"@/ui/*": ["src/components/ui/*"]
"@/*": ["src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
Expand Down

0 comments on commit 329c6f0

Please sign in to comment.