fix: styling

This commit is contained in:
Smigz 2024-12-28 17:47:39 -05:00
parent 8c0a4a773e
commit cd43c949aa
3 changed files with 4 additions and 3 deletions

View file

@ -9,7 +9,7 @@ async function getAllMessages() {
}
async function insertMessage(msg) {
db.run("INSERT INTO MESSAGES (message, username, date) VALUES (?, ?, ?)", [
db.run("INSERT INTO MESSAGES (message, username, date) VALUES ($1, $2, $3)", [
msg.message,
msg.username,
msg.date,