Skip to content

Commit

Permalink
Merge branch 'main' into faddat/ignore-webui
Browse files Browse the repository at this point in the history
  • Loading branch information
faddat authored Dec 19, 2023
2 parents eb79e50 + 135288e commit ff2cb5b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 211 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/testuideploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,19 @@ jobs:
bun-version: latest # or specify a version

- name: Install Dependencies
run: bun install
run: |
cd web-ui
bun install
- name: Build Project
run: bun run build
run: |
cd web-ui
bun run build
- name: Export Project
run: bun export
run: |
cd web-ui
bun export
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
Expand Down
3 changes: 2 additions & 1 deletion web-ui/components/Assets/portfolio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ import { useChain } from '@cosmos-kit/react';
import { IoWallet } from 'react-icons/io5';

import { useQBalanceQuery } from '@/hooks/useQueries';
import { PortfolioItem } from '@/pages/assets';
import { shiftDigits } from '@/utils';

import { PortfolioItem } from '@/pages/assets';

interface MyPortfolioProps {
portfolioItems: PortfolioItem[];
isWalletConnected: boolean;
Expand Down
207 changes: 0 additions & 207 deletions web-ui/pages/assets.tsx

This file was deleted.

0 comments on commit ff2cb5b

Please sign in to comment.