Skip to content

Commit 56d4e29

Browse files
committed
handle parsed outcome
1 parent 26521c6 commit 56d4e29

38 files changed

Lines changed: 127 additions & 71 deletions

File tree

app/(operations)/components/add-burn-sft-meta-quantity.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export const AddBurnQuantity = ({
120120

121121
return (
122122
<>
123-
<OperationInfoBox error={error} txHash={txResult?.hash} />
123+
<OperationInfoBox error={error} txResult={txResult} />
124124
<Form {...form}>
125125
<form
126126
id="add-burn-form"

app/(operations)/components/change-properties.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export const ChangeProperties = ({
125125

126126
return (
127127
<>
128-
<OperationInfoBox error={error} txHash={txResult?.hash} />
128+
<OperationInfoBox error={error} txResult={txResult} />
129129
<Form {...form}>
130130
<form
131131
id="change-properties-form"

app/(operations)/components/freeze-unfreeze-single.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export const FreezeUnfreezeSingle = ({
119119

120120
return (
121121
<>
122-
<OperationInfoBox error={error} txHash={txResult?.hash} />
122+
<OperationInfoBox error={error} txResult={txResult} />
123123
<Form {...form}>
124124
<form
125125
id="freeze-unfreeze-single-form"

app/(operations)/components/issue-nft-sft.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const IssueNftSft = ({
111111

112112
return (
113113
<>
114-
<OperationInfoBox error={error} txHash={txResult?.hash} />
114+
<OperationInfoBox error={error} txResult={txResult} type="issue" />
115115
<Form {...form}>
116116
<form
117117
id="sft-nft-issue-form"

app/(operations)/components/stop-creation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export const StopCreation = ({
6565

6666
return (
6767
<>
68-
<OperationInfoBox error={error} txHash={txResult?.hash} />
68+
<OperationInfoBox error={error} txResult={txResult} />
6969
<Form {...form}>
7070
<form
7171
id="stop-creation-form"

app/(operations)/components/toggle-special-roles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export const ToggleSpecialRoles = ({
155155

156156
return (
157157
<>
158-
<OperationInfoBox error={error} txHash={txResult?.hash} />
158+
<OperationInfoBox error={error} txResult={txResult} />
159159
<Form {...form}>
160160
<form
161161
id="toggle-special-roles-form"

app/(operations)/components/transfer-creation-role.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const TransferCreationRole = ({
8080

8181
return (
8282
<>
83-
<OperationInfoBox error={error} txHash={txResult?.hash} />
83+
<OperationInfoBox error={error} txResult={txResult} />
8484
<Form {...form}>
8585
<form
8686
id="transfer-creation-role-form"

app/(operations)/components/transfer-ownership.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const TransferOwnership = ({
7474

7575
return (
7676
<>
77-
<OperationInfoBox error={error} txHash={txResult?.hash} />
77+
<OperationInfoBox error={error} txResult={txResult} />
7878
<Form {...form}>
7979
<form
8080
id="transfer-ownership-form"

app/(operations)/components/wipe-single.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export const WipeSingle = ({
106106

107107
return (
108108
<>
109-
<OperationInfoBox error={error} txHash={txResult?.hash} />
109+
<OperationInfoBox error={error} txResult={txResult} />
110110
<Form {...form}>
111111
<form
112112
id="wipe-form"

app/(operations)/fungible-tokens/freeze-toggle/components/freeze-unfreeze.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const FreezeUnfreeze = () => {
7575

7676
return (
7777
<>
78-
<OperationInfoBox error={error} txHash={txResult?.hash} />
78+
<OperationInfoBox error={error} txResult={txResult} />
7979
<Form {...form}>
8080
<form
8181
id="freeze-unfreeze-form"

0 commit comments

Comments
 (0)