Fix invalid Tailwind property (#275)
This commit is contained in:
parent
52d47292ad
commit
b2ef40cf6f
|
@ -149,7 +149,7 @@ export const Chat: FC<Props> = memo(
|
||||||
}, [messagesEndRef]);
|
}, [messagesEndRef]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="overflow-none relative flex-1 bg-white dark:bg-[#343541]">
|
<div className="overflow-hidden relative flex-1 bg-white dark:bg-[#343541]">
|
||||||
{!(apiKey || serverSideApiKeyIsSet) ? (
|
{!(apiKey || serverSideApiKeyIsSet) ? (
|
||||||
<div className="mx-auto flex h-full w-[300px] flex-col justify-center space-y-6 sm:w-[500px]">
|
<div className="mx-auto flex h-full w-[300px] flex-col justify-center space-y-6 sm:w-[500px]">
|
||||||
<div className="mx-auto mb-5 text-gray-800 dark:text-gray-100">
|
<div className="mx-auto mb-5 text-gray-800 dark:text-gray-100">
|
||||||
|
|
Loading…
Reference in New Issue