Skip to content

Commit

Permalink
Update index.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
halfmanbear authored Aug 30, 2024
1 parent 28a7e5f commit 01e5241
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Generator/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function Generator() {
const extractPrinterName = (printer) => {
return printer.split(" (")[0].replace(/ /g, "");
};

const getFilamentMatchKeyword = (filament) => {
if (filament.includes("PLA")) {
return "PLA";
Expand All @@ -34,7 +34,7 @@ export function Generator() {
}
return filament.split(" ").pop().replace(/-/g, "").replace("OpenNept4une", "").trim();
};

const filtered = processesList.filter((process) => {
const processPrinterName = process.identifier
.split("@")[1]
Expand Down

0 comments on commit 01e5241

Please sign in to comment.