mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-30 19:06:23 +02:00
Small improvements (#228)
* make the start tag for all agents the same * remove scroll from the my assistants page
This commit is contained in:
parent
448f94a530
commit
3d36884c73
2 changed files with 5 additions and 5 deletions
|
|
@ -21,7 +21,7 @@ const SHOW_PREBUILT_CARDS = process.env.NEXT_PUBLIC_SHOW_PREBUILT_CARDS === 'tru
|
|||
|
||||
|
||||
|
||||
const ITEMS_PER_PAGE = 6;
|
||||
const ITEMS_PER_PAGE = 10;
|
||||
|
||||
const copilotPrompts = {
|
||||
"Blog assistant": {
|
||||
|
|
@ -363,7 +363,7 @@ export function BuildAssistantSection() {
|
|||
</Tab>
|
||||
<Tab key="existing" title="My Assistants">
|
||||
<div className="pt-4">
|
||||
<div className="h-96 flex flex-col bg-white dark:bg-gray-800 rounded-2xl border border-gray-200 dark:border-gray-700 p-4">
|
||||
<div className="flex flex-col bg-white dark:bg-gray-800 rounded-2xl border border-gray-200 dark:border-gray-700 p-4">
|
||||
{projectsLoading ? (
|
||||
<div className="flex items-center justify-center h-full text-sm text-gray-500 dark:text-gray-400">
|
||||
Loading assistants...
|
||||
|
|
@ -374,7 +374,7 @@ export function BuildAssistantSection() {
|
|||
</div>
|
||||
) : (
|
||||
<>
|
||||
<div className="flex-1 overflow-y-auto">
|
||||
<div className="flex-1">
|
||||
<div className="space-y-2">
|
||||
{currentProjects.map((project) => (
|
||||
<Link
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue