Skip to content

Commit

Permalink
fix: hide the publish model (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaoHai authored Sep 14, 2024
2 parents 1da2b68 + 9de30fb commit 39d91f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/app/market/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ declare type Bot = Tables<'bots'>;

const ASSISTANT_API_HOST = process.env.NEXT_PUBLIC_API_DOMAIN;

export default function Home() {
export default function Market() {
const { search } = useSearch();
const [visible, setVisible] = useState(false);
const [isComplete, setComplete] = useState(false);
Expand Down Expand Up @@ -67,7 +67,7 @@ export default function Home() {
return (
<div>
<div className="grid grid-flow-row-dense gap-8 justify-items-center px-[40px] grid-cols-2 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5">
<PublishBotEntity area="list" />
{/* <PublishBotEntity area="list" /> */}
{!isEmpty(bots) &&
map(bots, (bot: Bot) => (
<BotCard key={bot.id} bot={bot} handleCardClick={handleCardClick} />
Expand Down

0 comments on commit 39d91f4

Please sign in to comment.