From 523f192c6121806667cf96a3dd08711528ed4116 Mon Sep 17 00:00:00 2001
From: Godwin JIbs <126525197+Jibz-Mysten@users.noreply.github.com>
Date: Fri, 23 Jun 2023 12:38:59 -0400
Subject: [PATCH] wallet apps update (#12627)
## Description
Describe the changes or additions included in this PR.
- Switch to tailwind and remove scss for connected apps
- Clicking on the App in the all apps section take you to the app site
- UI fixes
---
.../components/sui-apps/ConnectedAppsCard.tsx | 5 +-
.../sui-apps/Playground.module.scss | 83 --------
.../components/sui-apps/SuiApp.module.scss | 182 ------------------
.../src/ui/app/components/sui-apps/SuiApp.tsx | 179 +++++++++++------
.../app/components/sui-apps/SuiAppEmpty.tsx | 41 ++--
.../src/ui/app/components/sui-apps/index.tsx | 10 +-
.../src/ui/app/shared/image-icon/index.tsx | 6 +-
7 files changed, 153 insertions(+), 353 deletions(-)
delete mode 100644 apps/wallet/src/ui/app/components/sui-apps/Playground.module.scss
delete mode 100644 apps/wallet/src/ui/app/components/sui-apps/SuiApp.module.scss
diff --git a/apps/wallet/src/ui/app/components/sui-apps/ConnectedAppsCard.tsx b/apps/wallet/src/ui/app/components/sui-apps/ConnectedAppsCard.tsx
index f25d5bc3ab7ef..114b4f3c27d73 100644
--- a/apps/wallet/src/ui/app/components/sui-apps/ConnectedAppsCard.tsx
+++ b/apps/wallet/src/ui/app/components/sui-apps/ConnectedAppsCard.tsx
@@ -2,7 +2,6 @@
// SPDX-License-Identifier: Apache-2.0
import { useFeature } from '@growthbook/growthbook-react';
-import cl from 'classnames';
import { useEffect, useMemo } from 'react';
import { useBackgroundClient } from '../../hooks/useBackgroundClient';
@@ -16,8 +15,6 @@ import { useAppSelector } from '_hooks';
import { FEATURES } from '_src/shared/experimentation/features';
import { prepareLinkToCompare } from '_src/shared/utils';
-import st from './Playground.module.scss';
-
const emptyArray: DAppEntry[] = [];
function ConnectedDapps() {
@@ -75,7 +72,7 @@ function ConnectedDapps() {
-