Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ElyasMehraein committed Apr 16, 2024
1 parent f81325d commit 1618ce0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/[subDirectory]/edit/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { verifyToken } from "@/controllers/auth";
import { notFound } from 'next/navigation'
import BusinessModel from '@/models/Business'
import { redirect } from 'next/navigation'
import EditBusiness from '@/components/templates/EditBusiness/EditBusiness'
import EditBusiness from '@/components/templates/editBusiness/EditBusiness';
import UserModel from '@/models/User'
import EditProfile from '@/components/templates/EditProfile/EditProfile'
import EditProfile from '@/components/templates/editProfile/EditProfile'


export default async function edit({ params }) {
Expand Down
2 changes: 1 addition & 1 deletion app/w/page.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import Wellcome from '@/components/templates/welcome/welcome';
import Wellcome from '@/components/templates/welcome/Welcome';
import { verifyToken } from "@/controllers/auth";
import { redirect } from 'next/navigation'
import { cookies } from "next/headers";
Expand Down

0 comments on commit 1618ce0

Please sign in to comment.