Skip to content

Commit

Permalink
Fixed precommit errors
Browse files Browse the repository at this point in the history
Signed-off-by: Lalith Kota <kotalalith@gmail.com>
  • Loading branch information
lalithkota committed May 2, 2024
1 parent 4cbacb7 commit 5a7d446
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/app/[locale]/home/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {useLocale} from "next-intl";
import Image from "next/image";
import {Suspense} from "react";
import {GetFaBox} from "@/app/components";
import {AuthUtil} from "@/app/components/auth";
Expand All @@ -15,7 +14,7 @@ export default function Next() {
<div className="flex flex-row ">
<div className="2xl:h-screen bg-gray-100 basis-1/2 flex items-center justify-center">
<div className="pl-6 mt-12">
<img src={prefixBasePath("/img/infographic_02.png")} alt="person" />
<img src={prefixBasePath("/img/infographic_02.png")} alt="person" />
</div>
</div>
<div className="max-w-sm flex flex-col m-12 basis-1/2">
Expand Down
1 change: 0 additions & 1 deletion src/app/[locale]/update/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"use client";
import Image from "next/image";
import {useLocale} from "next-intl";
import {useTranslations} from "next-intl";
import {Suspense} from "react";
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/get-fa-box.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default function GetFaBox() {
<span>
<Image
className="w-10 h-10 inline-block mt-2 bg-orange-200 rounded-lg"
src={prefixBasePath('/img/Bank.png')}
src={prefixBasePath("/img/Bank.png")}
alt={t("bank")}
width={50}
height={50}
Expand Down

0 comments on commit 5a7d446

Please sign in to comment.