Skip to content

Commit

Permalink
scrollable project list
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushKun committed Jun 15, 2024
1 parent 320996f commit 8680dac
Show file tree
Hide file tree
Showing 2 changed files with 169 additions and 166 deletions.
2 changes: 1 addition & 1 deletion next_app/src/components/bottom-tab-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default function BottomTabBar({ collapsed, toggle, setFullScreen, fullscr
console.log(data);
fetchFlag = true;
// toast({ variant: "newMessage", title: stripAnsiCodes(data) });
toast.custom((id) => <div className="bg-primary text-white p-2 px-4 border border-btr-black-1 rounded-md max-h-[400px]">{stripAnsiCodes(data)}</div>);
toast.custom((id) => <div className="bg-primary text-white p-2 px-4 border border-btr-black-1 rounded-md max-h-[200px] overflow-scroll">{stripAnsiCodes(data)}</div>);
setCommandOutputs(p => [...p, data]);

}
Expand Down
Loading

0 comments on commit 8680dac

Please sign in to comment.