* add empty conversation model selection Signed-off-by: James <james@jan.ai> * chore: using secondary button instead of sidebar button Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai>
20 lines
524 B
TypeScript
20 lines
524 B
TypeScript
import { useAtomValue } from "jotai";
|
|
import React, { Fragment } from "react";
|
|
import ModelTable from "../ModelTable";
|
|
import { currentProductAtom } from "@/_helpers/atoms/Model.atom";
|
|
|
|
const ActiveModelTable: React.FC = () => {
|
|
const activeModel = useAtomValue(currentProductAtom);
|
|
|
|
if (!activeModel) return null;
|
|
|
|
return (
|
|
<Fragment>
|
|
<h3 className="text-xl leading-[25px] mb-[13px]">Active Model(s)</h3>
|
|
<ModelTable models={[activeModel]} />
|
|
</Fragment>
|
|
);
|
|
};
|
|
|
|
export default ActiveModelTable;
|