fix: change border color on chat input when active (#5814)

Fixed border color on chat input
This commit is contained in:
Lucas Oliveira 2025-01-20 17:58:25 -03:00 committed by GitHub
commit d4b9a3f15b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@ import useFileSizeValidator from "@/shared/hooks/use-file-size-validator";
import useAlertStore from "@/stores/alertStore";
import useFlowStore from "@/stores/flowStore";
import { useUtilityStore } from "@/stores/utilityStore";
import { useEffect, useRef, useState } from "react";
import { useEffect, useRef } from "react";
import ShortUniqueId from "short-unique-id";
import {
ALLOWED_IMAGE_INPUT_EXTENSIONS,
@ -212,7 +212,7 @@ export default function ChatInput({
return (
<div className="flex w-full flex-col-reverse">
<div className="flex w-full flex-col rounded-md border border-input p-4 hover:border-muted-foreground focus:border-[1.75px] has-[:focus]:border-primary">
<div className="flex w-full flex-col rounded-md border border-input p-4 hover:border-muted-foreground focus:border-[1.75px] has-[:focus]:border-muted-foreground">
<TextAreaWrapper
checkSendingOk={checkSendingOk}
send={send}