Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
sstraatemans committed Jan 8, 2025
1 parent 73aac97 commit 0830d3c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions packages/apps/rwa-demo/src/app/(app)/assets/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client';

import { AssetFormScreen } from '@/components/AssetForm/AssetFormScreen';
import type { IAsset } from '@/components/AssetProvider/AssetProvider';
import { Confirmation } from '@/components/Confirmation/Confirmation';
import { SideBarBreadcrumbs } from '@/components/SideBarBreadcrumbs/SideBarBreadcrumbs';
import { useAccount } from '@/hooks/account';
Expand Down Expand Up @@ -35,7 +34,7 @@ const Assets = () => {
removeAsset(value);
};

const handleLink = async (assetProp: IAsset) => {
const handleLink = async (assetProp: any) => {
const asset = await getAsset(assetProp.uuid, account!);
if (!asset) {
addNotification({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import {
import type { FC, ReactElement } from 'react';
import { cloneElement, useState } from 'react';
import { Controller, useForm } from 'react-hook-form';
import { IWalletAccount } from '../AccountProvider/AccountType';
import { AssetPausedMessage } from '../AssetPausedMessage/AssetPausedMessage';

interface IProps {
Expand Down

0 comments on commit 0830d3c

Please sign in to comment.