diff --git a/src/components/ReportDialog/SubmitView.tsx b/src/components/ReportDialog/SubmitView.tsx
index 167d10ddf8..99af64a2a6 100644
--- a/src/components/ReportDialog/SubmitView.tsx
+++ b/src/components/ReportDialog/SubmitView.tsx
@@ -7,14 +7,12 @@ import {AppBskyLabelerDefs} from '@atproto/api'
import {getLabelingServiceTitle} from '#/lib/moderation'
import {ReportOption} from '#/lib/moderation/useReportOptions'
-import {atoms as a, useTheme, tokens, native} from '#/alf'
+import {atoms as a, useTheme, native} from '#/alf'
import {Text} from '#/components/Typography'
import * as Dialog from '#/components/Dialog'
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
import {ChevronLeft_Stroke2_Corner0_Rounded as ChevronLeft} from '#/components/icons/Chevron'
import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
-import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
-import {GradientFill} from '#/components/GradientFill'
import * as Toggle from '#/components/forms/Toggle'
import {CharProgress} from '#/view/com/composer/char-progress/CharProgress'
import {Loader} from '#/components/Loader'
@@ -115,7 +113,8 @@ export function SubmitView({
a.gap_lg,
a.p_md,
a.rounded_md,
- t.atoms.bg_contrast_25,
+ a.border,
+ t.atoms.border_contrast_low,
]}>
@@ -126,7 +125,7 @@ export function SubmitView({
-
+
@@ -138,7 +137,7 @@ export function SubmitView({
label="Select mod services"
values={selectedServices}
onChange={setSelectedServices}>
-
+
{labelers.map(labeler => {
const title = getLabelingServiceTitle({
displayName: labeler.creator.displayName,
@@ -209,11 +208,13 @@ export function SubmitView({
@@ -228,13 +229,17 @@ function LabelerToggle({title}: {title: string}) {
return (
- {ctx.selected && }
+
{title}
-
)