Skip to content

Commit

Permalink
Remove unused port input field
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Dec 4, 2023
1 parent e0668ee commit b6c349e
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions apps/client/pages/admin/email-queues/new.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export default function EmailQueues() {
const [username, setUsername] = useState();
const [password, setPassword] = useState();
const [hostname, setHostname] = useState();
const [port, setPort] = useState();
const [tls, setTls] = useState();

async function newQueue() {
Expand Down Expand Up @@ -109,21 +108,7 @@ export default function EmailQueues() {
onChange={(e) => setHostname(e.target.value)}
/>
</div>
<div>
<label
htmlFor="email"
className="block text-sm font-medium leading-6 text-gray-900"
>
Port
</label>
<input
type="text"
className="shadow-sm w-1/2 focus:ring-indigo-500 focus:border-indigo-500 block sm:text-sm border-gray-300 rounded-md"
placeholder="Enter first name here..."
name="name"
onChange={(e) => setPort(e.target.value)}
/>
</div>

<div>
<label
htmlFor="email"
Expand Down

0 comments on commit b6c349e

Please sign in to comment.