Skip to content

Commit e5acdbe

Browse files
authored
Merge pull request #216 from UoaWDCC/bugfix/increase-vm-limit
Chore: Add vm limit
2 parents 0d27a03 + f26a724 commit e5acdbe

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

app/(frontend)/contact/page.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ export default async function ExecutivesPage() {
6363
{eventsExecs.length > 0 && (
6464
<ExecutiveCollection executives={eventsExecs} sectionTitle="Events" />
6565
)}
66-
<InquiryForm />
66+
<div style={{ marginTop: "60px" }}>
67+
<InquiryForm />
68+
</div>
6769
</div>
6870
);
6971
}

app/page.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { EventsSection } from "@/components/Events/EventsSection";
33
import TextMarquee from "@/components/Marquees/TextMarquee";
44
import "@/components/Marquees/TextMarquee.css";
55

6-
export const dynamic = 'force-dynamic';
6+
export const dynamic = "force-dynamic";
77

88
const ExampleBannerArguments: BannerProps = {
99
title: "WELCOME TO",
@@ -28,7 +28,9 @@ export default function HomePage() {
2828
textBg="bg-primary"
2929
textColor="text-white"
3030
/>
31-
<EventsSection />
31+
<div style={{ marginTop: "20px", marginBottom: "40px" }}>
32+
<EventsSection />
33+
</div>
3234
</>
3335
);
3436
}

fly.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ swap_size_mb = 512
3030
processes = ['app']
3131

3232
[[vm]]
33-
memory = '512mb'
34-
cpu_kind = 'shared'
33+
memory = "2gb" # or 2gb
34+
cpu_kind = "shared"
3535
cpus = 1

0 commit comments

Comments
 (0)