Code format

This commit is contained in:
2025-07-08 13:18:04 +02:00
parent 1dc07159c1
commit 335bbc3bab
3 changed files with 37 additions and 40 deletions

View File

@@ -1,4 +1,4 @@
import { useState, useEffect } from 'react';
import { useState } from 'react';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Textarea } from '@/components/ui/textarea';
@@ -208,11 +208,11 @@ const BatchTransactionForm: React.FC<BatchTransactionFormProps> = ({ onClose, on
);
return (
<div
<div
className="fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50"
onClick={onClose}
>
<Card
<Card
className="bg-gray-900 border-gray-700 text-white w-full max-w-4xl max-h-[90vh] overflow-y-auto"
onClick={(e) => e.stopPropagation()}
>