Skip to content

Commit 85afb3c

Browse files
committed
fix placeholder
1 parent 0a9d58a commit 85afb3c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

apps/dashboard/src/components/contract-components/contract-publish-form/decoded-bytes-input/ref-bytes-input.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ export const RefBytesContractInput: React.FC<RefBytesContractInputProps> = ({
104104
placeholder={
105105
publishedContractsQuery.isFetched &&
106106
(publishedContractsQuery?.data || []).length === 0
107-
? "No extensions found"
108-
: "Select extension"
107+
? "No contracts found"
108+
: "Select contract"
109109
}
110110
/>
111111
</SelectTrigger>

apps/dashboard/src/components/contract-components/contract-publish-form/ref-contract-impl-input/ref-input-impl.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ export const RefContractImplInput: React.FC<RefContractImplInputProps> = ({
8585
placeholder={
8686
publishedContractsQuery.isFetched &&
8787
(publishedContractsQuery?.data || []).length === 0
88-
? "No extensions found"
89-
: "Select extension"
88+
? "No contracts found"
89+
: "Select contract"
9090
}
9191
>
9292
{publishedContractsQuery?.data?.map(({ contractId }) => (

apps/dashboard/src/components/contract-components/contract-publish-form/ref-contract-input/ref-input.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ export const RefContractInput: React.FC<RefContractInputProps> = ({
100100
placeholder={
101101
publishedContractsQuery.isFetched &&
102102
(publishedContractsQuery?.data || []).length === 0
103-
? "No extensions found"
104-
: "Select extension"
103+
? "No contracts found"
104+
: "Select contract"
105105
}
106106
/>
107107
</SelectTrigger>

0 commit comments

Comments
 (0)