Skip to content

Commit

Permalink
fix(assistant builder): layout and UI fbdk
Browse files Browse the repository at this point in the history
  • Loading branch information
fontanierh committed Sep 7, 2023
1 parent be08849 commit 1029c60
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions front/components/sparkle/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
FolderOpenIcon,
KeyIcon,
PaperAirplaneIcon,
RobotStrokeIcon,
RobotIcon,
Square3Stack3DIcon,
TestTubeIcon,
} from "@dust-tt/sparkle";
Expand Down Expand Up @@ -148,7 +148,7 @@ export const subNavigationAdmin = ({
nav.push({
id: "assistants",
label: "Assistants Manager",
icon: RobotStrokeIcon,
icon: RobotIcon,
href: `/w/${owner.sId}/builder/assistants`,
current: current === "assistants",
subMenuLabel: current === "assistants" ? subMenuLabel : undefined,
Expand Down
4 changes: 2 additions & 2 deletions front/pages/w/[wId]/builder/assistants/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
PageHeader,
PlusIcon,
RobotStrokeIcon,
RobotIcon,
SectionHeader,
} from "@dust-tt/sparkle";
import { GetServerSideProps, InferGetServerSidePropsType } from "next";
Expand Down Expand Up @@ -66,7 +66,7 @@ export default function AssistantsBuilder({
>
<PageHeader
title="Assistants Builder"
icon={RobotStrokeIcon}
icon={RobotIcon}
description="Build an assistant."
/>
<div>
Expand Down
8 changes: 4 additions & 4 deletions front/pages/w/[wId]/builder/assistants/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import {
Button,
ChevronUpDownIcon,
Icon,
InformationCircleStrokeIcon,
InformationCircleIcon,
PageHeader,
PencilSquareIcon,
PlusIcon,
RobotStrokeIcon,
RobotIcon,
} from "@dust-tt/sparkle";
import { GetServerSideProps, InferGetServerSidePropsType } from "next";
import { useRouter } from "next/router";
Expand Down Expand Up @@ -84,7 +84,7 @@ export default function CreateAssistant({
<div className="mt-8 flex flex-col space-y-8 pb-8">
<PageHeader
title="Assistant Editor"
icon={RobotStrokeIcon}
icon={RobotIcon}
description="Make and maintain your customized assistants."
/>
<div className="mt-8 flex flex-row items-start">
Expand Down Expand Up @@ -164,7 +164,7 @@ export default function CreateAssistant({
<div className="text-sm font-semibold text-action-500">
Select a specific LLM model
</div>
<Icon size="xs" visual={InformationCircleStrokeIcon} />
<Icon size="xs" visual={InformationCircleIcon} />
</div>
</div>
</div>
Expand Down

0 comments on commit 1029c60

Please sign in to comment.