Skip to content

Commit 2491356

Browse files
committed
Change
1 parent 1b1ac61 commit 2491356

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

backend/src/main/kotlin/org/vzbot/discord/components/PrinterSelection.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import java.awt.Color
1616

1717
@DCSelection
1818
class PrinterSelection: PermanentSimpleSelectionMenu("vz_selection_printers", SimpleSelectionMenu("Please select your printer", options = transaction { Printer.all().map { SelectOption.of(it.name, it.name) }.toMutableList() }, maxOptions = 1, minOptions = 1 )) {
19-
2019
override fun execute(selections: List<String>, sender: ActionSender, hook: Message) {
2120
val selectedPrinter = selections.first()
2221
val fetchedPrinter = transaction { Printer.find { Printers.name eq selectedPrinter }.firstOrNull() }

frontend/server/axios.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import axios from 'axios';
22

33
const config = useRuntimeConfig()
44

5-
console.log(`[axios] Backend URL: ${config.BACKEND_URL}`)
6-
75
const axiosInstance = axios.create({
86
baseURL: config.BACKEND_URL,
97
headers: {

0 commit comments

Comments
 (0)