Skip to content

Commit

Permalink
Remove dark mode from CreateThreadModal.tsx since it's not set yet
Browse files Browse the repository at this point in the history
  • Loading branch information
fjsj committed Jan 23, 2025
1 parent b04878d commit 139e818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/CreateThreadModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface ModalHeaderProps {

function ModalHeader({ onClose }: ModalHeaderProps) {
return (
<View className="flex-row items-center justify-between border-b border-gray-200 p-4 dark:border-gray-700">
<View className="flex-row items-center justify-between border-b border-gray-200 p-4">
<Text size="lg" bold>
New Thread
</Text>
Expand Down Expand Up @@ -119,7 +119,7 @@ export function CreateThreadModal({ isOpen, onClose, onCreateThread }: CreateThr
>
<Animated.View
entering={FadeIn.delay(100)}
className="overflow-hidden rounded-lg bg-white dark:bg-gray-800"
className="overflow-hidden rounded-lg bg-white"
>
<ModalHeader onClose={handleClose} />
<ModalBody topic={topic} isCreating={isCreating} onTopicChange={setTopic} />
Expand Down

0 comments on commit 139e818

Please sign in to comment.