@@ -5,7 +5,6 @@ import { LoadingScreen } from "@/components/shared/LoadingScreen";
55import NewPipelineButton from "@/components/shared/NewPipelineButton" ;
66import QuickStartCards from "@/components/shared/QuickStart/QuickStartCards" ;
77import { withSuspenseWrapper } from "@/components/shared/SuspenseWrapper" ;
8- import { Alert , AlertDescription , AlertTitle } from "@/components/ui/alert" ;
98import { Button } from "@/components/ui/button" ;
109import { Checkbox } from "@/components/ui/checkbox" ;
1110import { Icon } from "@/components/ui/icon" ;
@@ -165,22 +164,12 @@ export const PipelineSection = withSuspenseWrapper(() => {
165164
166165 return (
167166 < BlockStack gap = "4" className = "w-full" >
168- < Alert variant = "destructive" >
169- < Icon name = "Terminal" />
170- < AlertTitle > Heads up!</ AlertTitle >
171- < AlertDescription >
172- Your pipelines are stored in your browser's local storage.
173- Clearing your browser data or cookies will delete all saved pipelines.
174- Consider exporting important pipelines to files for backup.
175- </ AlertDescription >
176- </ Alert >
177-
178167 < PipelineFiltersBar
179168 filters = { filterBarProps }
180169 actions = { < QuickStartButton /> }
181170 />
182171
183- < Table >
172+ < Table className = "text-sm" >
184173 < TableHeader >
185174 < TableRow className = "text-xs" >
186175 < TableHead className = "w-10" >
@@ -224,7 +213,7 @@ export const PipelineSection = withSuspenseWrapper(() => {
224213 </ Table >
225214
226215 { totalPages > 1 && (
227- < InlineStack gap = "2" align = "space-between" blockAlign = "center" >
216+ < InlineStack align = "space-between" blockAlign = "center" className = "w-full ">
228217 < InlineStack gap = "2" blockAlign = "center" >
229218 < Button
230219 variant = "outline"
@@ -241,10 +230,10 @@ export const PipelineSection = withSuspenseWrapper(() => {
241230 < Icon name = "ChevronLeft" />
242231 Previous
243232 </ Button >
233+ < Text size = "sm" tone = "subdued" >
234+ Page { currentPage } of { totalPages }
235+ </ Text >
244236 </ InlineStack >
245- < Text size = "sm" tone = "subdued" >
246- Page { currentPage } of { totalPages }
247- </ Text >
248237 < Button
249238 variant = "outline"
250239 onClick = { goToNextPage }
@@ -256,10 +245,6 @@ export const PipelineSection = withSuspenseWrapper(() => {
256245 </ InlineStack >
257246 ) }
258247
259- < Button onClick = { fetchUserPipelines } className = "mt-6 max-w-96" >
260- Refresh
261- </ Button >
262-
263248 { selectedPipelines . size > 0 && (
264249 < BulkActionsBar
265250 selectedPipelines = { Array . from ( selectedPipelines ) }
0 commit comments