Compare commits

...

2 Commits

Author SHA1 Message Date
decentral1se
2103f9e3cc
fix: Ethermap is now page title 2023-09-14 16:28:57 +02:00
decentral1se
bc7f09494c
chore: trim whitespace/newlines 2023-09-14 16:28:46 +02:00
8 changed files with 8 additions and 13 deletions

View File

@ -2,5 +2,3 @@
export default (err, _, res) => {
res.status(500).json({ message: err.message })
}

View File

@ -89,4 +89,3 @@ test.serial('post "/api/point/add" with incorrect data keys throws 500 error', a
test.after(async () => {
await db.migrate.down()
})

View File

@ -5,7 +5,7 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<title>Ethermap</title>
<!-- leaflet -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"

View File

@ -33,4 +33,3 @@ export default new Router({
}
]
})

View File

@ -15,4 +15,3 @@ const io = new Server(server)
ViteExpress.bind(App, server)
Socket(io)