mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-19 00:36:12 +01:00
* refactor: optimize backend operations for client requests * fix: message styling * refactor: Improve handleKeyUp logic in StreamRunManager.js and handleText.js * refactor: Improve handleKeyUp logic in StreamRunManager.js and handleText.js * fix: clear new convo messages on clear all convos * fix: forgot to pass userId to getConvo * refactor: update getPartialText to send basePayload.text
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import { memo } from 'react';
|
|
|
|
const PlaceholderRow = memo(({ isCard }: { isCard?: boolean }) => {
|
|
if (!isCard) {
|
|
return null;
|
|
}
|
|
return <div className="mt-1 h-[27px] bg-transparent" />;
|
|
});
|
|
|
|
export default PlaceholderRow;
|