Skip to content

Commit

Permalink
unrelated bugfixes. fight me
Browse files Browse the repository at this point in the history
  • Loading branch information
toBeOfUse committed Apr 16, 2024
1 parent e91ca0e commit 2672f19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface ServerConfig {
githubOrgPrivateKey: string;
mongoURI: string;
port: number;
supportEmailHost: string;
incomingEmailHost: string;
outgoingEmailWhitelist?: string[];
}

Expand Down
4 changes: 2 additions & 2 deletions staff-frontend/pages/emailLists.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ export default function EmailLists() {
title: "Adding items from JSON",
icon: <FileAddFilled />,
content: <>
<p>This will add {emails.length} items to "{list}".</p>
<p>This will add {objects.length} items to "{list}".</p>
<p>The following emails failed validation and will be skipped:</p>
<pre>{badEmails.join("\n")}</pre>
<pre>{badEmails.map(badEmail=>badEmail.address).join("\n")}</pre>
<p>Proceed?</p>
</>,
onOk() {
Expand Down

0 comments on commit 2672f19

Please sign in to comment.