From aed786cf2c85e0a2ff883757b15b5483cc39877a Mon Sep 17 00:00:00 2001 From: Xor290 Date: Wed, 18 Feb 2026 21:12:03 +0100 Subject: [PATCH] chore: fix url api --- frontend-admin/src/components/ui/Card.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend-admin/src/components/ui/Card.tsx b/frontend-admin/src/components/ui/Card.tsx index 5383e77f..15a936cf 100644 --- a/frontend-admin/src/components/ui/Card.tsx +++ b/frontend-admin/src/components/ui/Card.tsx @@ -1,11 +1,11 @@ import React, { useMemo } from "react"; -import { View, StyleSheet, type ViewStyle } from "react-native"; +import { View, StyleSheet, type ViewStyle, type StyleProp } from "react-native"; import { spacing, borderRadius, shadows } from "../../theme"; import { useTheme } from "../../context/ThemeContext"; interface CardProps { children: React.ReactNode; - style?: ViewStyle; + style?: StyleProp; } export default function Card({ children, style }: CardProps) {