-
{t("title")}
-
{t("subtitle")}
+
{t('title')}
+
{t('subtitle')}
diff --git a/src/components/modules/escrow/RefundRemainingFundsForm.tsx b/src/components/modules/escrow/RefundRemainingFundsForm.tsx
index 47c5f56cd..e4d1c21ba 100644
--- a/src/components/modules/escrow/RefundRemainingFundsForm.tsx
+++ b/src/components/modules/escrow/RefundRemainingFundsForm.tsx
@@ -1,6 +1,6 @@
-"use client";
+'use client';
-import { Button } from "@/components/ui/button";
+import { Button } from '@/components/ui/button';
import {
Form,
FormControl,
@@ -9,19 +9,16 @@ import {
FormItem,
FormLabel,
FormMessage,
-} from "@/components/ui/form";
-import { Input } from "@/components/ui/input";
-import { useRefundRemainingFundsEscrowHook } from "./hooks/refund-remaining-funds-escrow.hook";
+} from '@/components/ui/form';
+import { Input } from '@/components/ui/input';
+import { useRefundRemainingFundsEscrowHook } from './hooks/refund-remaining-funds-escrow.hook';
export function RefundRemainingFundsForm() {
const { onSubmit, form } = useRefundRemainingFundsEscrowHook();
return (