+
diff --git a/apps/core/src/components/coin/CoinItem.tsx b/apps/core/src/components/coin/CoinItem.tsx
index a7d82afe1ba..8e2062efa26 100644
--- a/apps/core/src/components/coin/CoinItem.tsx
+++ b/apps/core/src/components/coin/CoinItem.tsx
@@ -39,13 +39,8 @@ export function CoinItem({
return (
-
-
+
{isIota ? (coinMeta?.name || '').toUpperCase() : coinMeta?.name || symbol}
diff --git a/apps/core/src/components/icon/ImageIcon.tsx b/apps/core/src/components/icon/ImageIcon.tsx
index 6b58dbf715a..3f1e76a6d31 100644
--- a/apps/core/src/components/icon/ImageIcon.tsx
+++ b/apps/core/src/components/icon/ImageIcon.tsx
@@ -42,9 +42,8 @@ function FallBackAvatar({ str, rounded, size = ImageIconSize.Large }: FallBackAv
return (
diff --git a/apps/wallet/src/ui/app/components/DAppPermissionList.tsx b/apps/wallet/src/ui/app/components/DAppPermissionList.tsx
index 3f5d4b33d6c..b565f9aff18 100644
--- a/apps/wallet/src/ui/app/components/DAppPermissionList.tsx
+++ b/apps/wallet/src/ui/app/components/DAppPermissionList.tsx
@@ -20,7 +20,7 @@ export function DAppPermissionList({ permissions }: DAppPermissionListProps) {
{permissions.map((permissionKey) => (
}
+ icon={
}
text={PERMISSION_TYPE_TO_TEXT[permissionKey]}
/>
))}
diff --git a/apps/wallet/src/ui/app/components/NoData.tsx b/apps/wallet/src/ui/app/components/NoData.tsx
index 4c943d9ab68..c8052f55236 100644
--- a/apps/wallet/src/ui/app/components/NoData.tsx
+++ b/apps/wallet/src/ui/app/components/NoData.tsx
@@ -1,15 +1,19 @@
// Copyright (c) 2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
+import { Theme, useTheme } from '@iota/core';
import NoDataImage from '_assets/images/no_data.svg';
+import NoDataDarkImage from '_assets/images/no_data_darkmode.svg';
interface NoDataProps {
message: string;
}
export function NoData({ message }: NoDataProps) {
+ const { theme } = useTheme();
+
return (
-
+ {theme === Theme.Dark ? : }
{message}
);
diff --git a/apps/wallet/src/ui/app/components/Overlay.tsx b/apps/wallet/src/ui/app/components/Overlay.tsx
index 73e523e38cd..69a027a87ea 100644
--- a/apps/wallet/src/ui/app/components/Overlay.tsx
+++ b/apps/wallet/src/ui/app/components/Overlay.tsx
@@ -15,7 +15,7 @@ interface OverlayProps {
closeOverlay?: () => void;
closeIcon?: ReactNode | null;
setShowModal?: (showModal: boolean) => void;
- background?: 'bg-neutral-100';
+ background?: 'bg-neutral-100 dark:bg-neutral-6';
titleCentered?: boolean;
showBackButton?: boolean;
onBack?: () => void;
@@ -58,7 +58,7 @@ export function Overlay({
testId="overlay-title"
/>
)}
-
diff --git a/apps/wallet/src/ui/app/components/PageTemplate.tsx b/apps/wallet/src/ui/app/components/PageTemplate.tsx
index 3648ff6732c..53fe44848bf 100644
--- a/apps/wallet/src/ui/app/components/PageTemplate.tsx
+++ b/apps/wallet/src/ui/app/components/PageTemplate.tsx
@@ -33,7 +33,7 @@ export function PageTemplate({
onClose={onClose}
/>
)}
-
diff --git a/apps/wallet/src/ui/app/components/PasswordInputDialog.tsx b/apps/wallet/src/ui/app/components/PasswordInputDialog.tsx
index 842e31ac7f2..2b433c7e41d 100644
--- a/apps/wallet/src/ui/app/components/PasswordInputDialog.tsx
+++ b/apps/wallet/src/ui/app/components/PasswordInputDialog.tsx
@@ -68,7 +68,7 @@ export function PasswordInputDialog({
{({ isSubmitting, isValid, errors }) => (