Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wallet apps update #12627

Merged
merged 15 commits into from
Jun 23, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -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() {
Expand Down Expand Up @@ -75,7 +72,7 @@ function ConnectedDapps() {
</Text>
</div>

<div className={cl(st.apps, st.appCards)}>
<div className="mb-28 grid gap-3.75 grid-cols-2">
{connectedApps.length ? (
connectedApps.map((app) => <SuiApp key={app.permissionID} {...app} displayType="card" />)
) : (
Expand Down
83 changes: 0 additions & 83 deletions apps/wallet/src/ui/app/components/sui-apps/Playground.module.scss

This file was deleted.

182 changes: 0 additions & 182 deletions apps/wallet/src/ui/app/components/sui-apps/SuiApp.module.scss

This file was deleted.

Loading