mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
fix format
This commit is contained in:
@@ -51,7 +51,7 @@ const AllBlocksContent: React.FC = () => {
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="scrollbar-thumb-rounded scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200 h-full overflow-y-scroll pt-4">
|
||||
<div className="scrollbar-thumb-rounded h-full overflow-y-scroll pt-4 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200">
|
||||
<div className="w-full space-y-3 px-4 pb-4">
|
||||
{categories.map((category, index) => (
|
||||
<Fragment key={category.name}>
|
||||
|
||||
@@ -12,7 +12,7 @@ const IntegrationsContent: React.FC<IntegrationsContentProps> = ({
|
||||
setIntegration,
|
||||
}) => {
|
||||
return (
|
||||
<div className="scrollbar-thumb-rounded scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200 h-full overflow-y-scroll pt-4">
|
||||
<div className="scrollbar-thumb-rounded h-full overflow-y-scroll pt-4 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200">
|
||||
<div className="w-full px-4 pb-4">
|
||||
{integration == "" ? (
|
||||
<IntegrationList setIntegration={setIntegration} />
|
||||
|
||||
@@ -42,7 +42,7 @@ const MarketplaceAgentsContent: React.FC = () => {
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="scrollbar-thumb-rounded scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200 h-full overflow-y-scroll pt-4">
|
||||
<div className="scrollbar-thumb-rounded h-full overflow-y-scroll pt-4 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200">
|
||||
<div className="w-full space-y-3 px-4 pb-4">
|
||||
{agents.map((agent) => (
|
||||
<MarketplaceAgentBlock
|
||||
|
||||
@@ -42,7 +42,7 @@ const MyAgentsContent: React.FC = () => {
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="scrollbar-thumb-rounded scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200 h-full overflow-y-scroll pt-4">
|
||||
<div className="scrollbar-thumb-rounded h-full overflow-y-scroll pt-4 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200">
|
||||
<div className="w-full space-y-3 px-4 pb-4">
|
||||
{agents.map((agent) => (
|
||||
<UGCAgentBlock
|
||||
|
||||
@@ -71,14 +71,14 @@ const SuggestionContent: React.FC<SuggestionContentProps> = ({
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div className="scrollbar-thumb-rounded scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200 h-full overflow-y-scroll pt-4">
|
||||
<div className="scrollbar-thumb-rounded h-full overflow-y-scroll pt-4 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200">
|
||||
<div className="w-full space-y-6 pb-4">
|
||||
{/* Recent Searches */}
|
||||
<div className="space-y-2.5">
|
||||
<p className="px-4 font-sans text-sm font-medium leading-[1.375rem] text-zinc-800">
|
||||
Recent searches
|
||||
</p>
|
||||
<div className="scrollbar-hide flex flex-nowrap gap-2 overflow-x-auto">
|
||||
<div className="flex flex-nowrap gap-2 overflow-x-auto scrollbar-hide">
|
||||
{recentSearches
|
||||
? recentSearches.map((search, index) => (
|
||||
<SearchHistoryChip
|
||||
|
||||
@@ -6,7 +6,7 @@ const BlockMenuSearch: React.FC<{ searchQuery: string }> = ({
|
||||
searchQuery,
|
||||
}) => {
|
||||
return (
|
||||
<div className="scrollbar-thumb-rounded scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200 h-full space-y-4 overflow-y-scroll p-4">
|
||||
<div className="scrollbar-thumb-rounded h-full space-y-4 overflow-y-scroll p-4 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-zinc-200">
|
||||
<FiltersList />
|
||||
<SearchList searchQuery={searchQuery} />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user