Skip to content

Commit

Permalink
fix: change text color in chain selector
Browse files Browse the repository at this point in the history
  • Loading branch information
amessbee committed Sep 25, 2024
1 parent b0f7529 commit 6537f05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/Orchestration/ChainSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const ChainSelector = ({ setSelectedChain }) => (
<select
className="select select-bordered daisyui-focus:ring-blue-500 daisyui-focus:border-blue-500 bg-black-500 daisyui-input-bordered w-full rounded-lg px-4 py-2 text-lg text-white"
className="select select-bordered daisyui-focus:ring-blue-500 daisyui-focus:border-blue-500 bg-black-500 daisyui-input-bordered w-full rounded-lg px-4 py-2 text-blue"
onChange={e => setSelectedChain(e.target.value)}
>
<option disabled selected>
Expand Down

0 comments on commit 6537f05

Please sign in to comment.