ya xyi znaet che pisat, zaebalsya pridymivat

This commit is contained in:
aurinex
2025-07-21 22:32:40 +05:00
parent f201aaa894
commit 9746847ebf
7 changed files with 215 additions and 31 deletions

View File

@ -11,7 +11,7 @@ import {
Box,
Chip,
} from '@mui/material';
import CustomTooltip from './CustomTooltip';
// Тип для плаща с необязательными полями для обоих вариантов использования
export interface CapeCardProps {
cape: {
@ -60,7 +60,7 @@ export default function CapeCard({
const capeDescription = cape.cape_description || cape.description || '';
return (
<Tooltip arrow title={capeDescription}>
<CustomTooltip arrow title={capeDescription}>
<Card
sx={{
bgcolor: 'rgba(255, 255, 255, 0.05)',
@ -122,6 +122,6 @@ export default function CapeCard({
</Button>
</CardActions>
</Card>
</Tooltip>
</CustomTooltip>
);
}