From 0aea93ab52b9b8292f2ea538e5184f9a9929e0c5 Mon Sep 17 00:00:00 2001 From: Beef Date: Sat, 7 Jan 2023 23:17:43 +0000 Subject: [PATCH] [UI > PluginSettings] Fix non-uniform class names --- src/ui/settings/components/PluginSettings.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/settings/components/PluginSettings.tsx b/src/ui/settings/components/PluginSettings.tsx index aa1248f..97e0d3c 100644 --- a/src/ui/settings/components/PluginSettings.tsx +++ b/src/ui/settings/components/PluginSettings.tsx @@ -13,7 +13,7 @@ const styles = stylesheet.createThemedStyleSheet({ backgroundColor: stylesheet.ThemeColorMap.BACKGROUND_MOBILE_SECONDARY, flex: 1, }, - cardStyle: { + card: { backgroundColor: stylesheet.ThemeColorMap.BACKGROUND_MOBILE_PRIMARY, color: stylesheet.ThemeColorMap.TEXT_NORMAL, }, @@ -48,7 +48,7 @@ export default function PluginSettings({ plugin, children }: PluginSettingsProps screenOptions={{ cardOverlayEnabled: false, cardShadowEnabled: false, - cardStyle: styles.cardStyle, + cardStyle: styles.card, headerStyle: styles.header, headerTitleContainerStyle: styles.headerTitleContainer, }}