Skip to content

Commit

Permalink
fixes custom prompt dropdown text color for dark mode with text-gray-700
Browse files Browse the repository at this point in the history
  • Loading branch information
St-Bloom committed Nov 2, 2023
1 parent 6fed54c commit eaf5f15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const PublicPromptsList = ({
{options.map((option) => (
<div
key={option.id}
className="px-4 py-2 cursor-pointer hover:bg-gray-100"
className="px-4 py-2 cursor-pointer hover:bg-gray-100 text-gray-700"
onClick={() => handleOptionClick(option)}
>
{option.title}
Expand Down

0 comments on commit eaf5f15

Please sign in to comment.