Skip to content

Commit 66387d4

Browse files
committed
WIP.
1 parent 42c38c8 commit 66387d4

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Sources/App/Core/Supporters+GitHub.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,5 +412,10 @@ extension Array<Supporters.Community> {
412412
name: "Sparrow Code",
413413
avatarUrl: "https://avatars.githubusercontent.com/u/98487302?v=4"
414414
),
415+
.init(
416+
login: "coderabbitai",
417+
name: "CodeRabbit",
418+
avatarUrl: "https://avatars.githubusercontent.com/u/132028505?v=4"
419+
),
415420
]
416421
}

Sources/App/Views/Portal/Verify+View.swift

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,13 @@ enum Verify {
2424
override func content() -> Node<HTML.BodyContext> {
2525
.div(
2626
.class("portal-form-container"),
27-
.h2("Please enter the confirmation code sent to your email"),
27+
.p(
28+
.text("Please enter the confirmation code sent to your email")
29+
),
2830
.verifyForm(email: model.email),
29-
.text(model.errorMessage)
31+
.p(
32+
.text(model.errorMessage)
33+
)
3034
)
3135
}
3236
}

0 commit comments

Comments
 (0)