We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db2fcb7 commit 1e21449Copy full SHA for 1e21449
1 file changed
components/operations/operations-tokenid-input.tsx
@@ -13,7 +13,11 @@ export const OperationsTokenIdInput = ({
13
tokenType: CommonOpertationContentProps['tokenType'];
14
description?: string;
15
}) => {
16
- const { tokens } = useCreatorTokens<{ ticker: string; isPaused: boolean }>({
+ const { tokens } = useCreatorTokens<{
17
+ ticker: string;
18
+ identifier: string;
19
+ isPaused: boolean;
20
+ }>({
21
tokenType,
22
});
23
@@ -25,7 +29,7 @@ export const OperationsTokenIdInput = ({
25
29
options={
26
30
tokens
27
31
? tokens?.map((token) => ({
28
- value: token.ticker,
32
+ value: token.identifier,
33
label: token.ticker,
34
}))
35
: []
0 commit comments