Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.

Commit 7438ad1

Browse files
Remove redundant id attributes from dropdown filters in welcome page for cleaner markup.
1 parent 1b8548d commit 7438ad1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/js/pages/welcome.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function Welcome({ userFilaments, machines, filamentTypes, colors
1919
<tbody>
2020
<tr>
2121
<td className="border border-gray-300 p-3 text-left text-gray-900 dark:border-gray-600 dark:text-gray-200">
22-
<select name="machines" id="machine" className="w-full">
22+
<select name="machines" className="w-full">
2323
<option value="0">- All -</option>
2424

2525
{ machines.map((item) => (
@@ -29,7 +29,7 @@ export default function Welcome({ userFilaments, machines, filamentTypes, colors
2929
</td>
3030

3131
<td className="border border-gray-300 p-3 text-left text-gray-900 dark:border-gray-600 dark:text-gray-200">
32-
<select name="filamentTypes" id="filamentType" className="w-full">
32+
<select name="filamentTypes" className="w-full">
3333
<option value="0">- All -</option>
3434

3535
{ filamentTypes.map((item) => (
@@ -39,7 +39,7 @@ export default function Welcome({ userFilaments, machines, filamentTypes, colors
3939
</td>
4040

4141
<td className="border border-gray-300 p-3 text-left text-gray-900 dark:border-gray-600 dark:text-gray-200">
42-
<select name="colors" id="color" className="w-full">
42+
<select name="colors" className="w-full">
4343
<option value="0">- All -</option>
4444

4545
{ colors.map((item) => (

0 commit comments

Comments
 (0)