Skip to content

Commit

Permalink
fix formatting of placeholderValue text in ChainSelector
Browse files Browse the repository at this point in the history
  • Loading branch information
mikestarrdev committed Apr 18, 2024
1 parent 9f74ac7 commit e620a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/ui/ChainSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const ChainSelector = () => {
<Select
isSelectDisabled={isSelectDisabled}
handleSelectChange={(val: string) => handleSelectChange(Number(val))}
placeholderValue={`${networkName}: ${placeholder}`}
placeholderValue={`${networkName && networkName + ':'} ${placeholder}`}
placeholderFiller={placeholderFiller}
selectOptions={chainIdOptions}
/>
Expand Down

0 comments on commit e620a4d

Please sign in to comment.