3
3
ArrowUpCircleIcon ,
4
4
BookOpenIcon ,
5
5
ChatBubbleLeftEllipsisIcon ,
6
+ InformationCircleIcon ,
6
7
MapPinIcon ,
7
8
} from "@heroicons/react/20/solid" ;
8
9
import { Form } from "@remix-run/react" ;
@@ -31,6 +32,7 @@ import {
31
32
DialogTitle ,
32
33
DialogTrigger ,
33
34
} from "~/components/primitives/Dialog" ;
35
+ import { InfoPanel } from "~/components/primitives/InfoPanel" ;
34
36
import { NavBar , PageAccessories , PageTitle } from "~/components/primitives/PageHeader" ;
35
37
import { Paragraph } from "~/components/primitives/Paragraph" ;
36
38
import * as Property from "~/components/primitives/PropertyTable" ;
@@ -50,7 +52,7 @@ import { useHasAdminAccess } from "~/hooks/useUser";
50
52
import { redirectWithErrorMessage , redirectWithSuccessMessage } from "~/models/message.server" ;
51
53
import { findProjectBySlug } from "~/models/project.server" ;
52
54
import { type Region , RegionsPresenter } from "~/presenters/v3/RegionsPresenter.server" ;
53
- import { requireUser , requireUserId } from "~/services/session.server" ;
55
+ import { requireUser } from "~/services/session.server" ;
54
56
import {
55
57
docsPath ,
56
58
EnvironmentParamSchema ,
@@ -158,7 +160,7 @@ export default function Page() {
158
160
</ MainCenteredContainer >
159
161
) : (
160
162
< >
161
- < div className = "grid max-h-full min-h-full grid-rows-[1fr] overflow-x-auto" >
163
+ < div className = "overflow-x-auto" >
162
164
< Table >
163
165
< TableHeader >
164
166
< TableRow >
@@ -293,6 +295,14 @@ export default function Page() {
293
295
</ TableRow >
294
296
</ TableBody >
295
297
</ Table >
298
+ < InfoPanel
299
+ icon = { InformationCircleIcon }
300
+ variant = "minimal"
301
+ panelClassName = "max-w-full"
302
+ >
303
+ Runs execute in your default region, but operational and log data remains in
304
+ us-east-1.
305
+ </ InfoPanel >
296
306
</ div >
297
307
</ >
298
308
) }
0 commit comments