Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

Commit 0ef262b

Browse files
committed
Use pico css to optimize UI
1 parent 35b3081 commit 0ef262b

3 files changed

Lines changed: 228 additions & 274 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,5 @@ k8s/*-secret.yaml
5656

5757
# Development files
5858
dev-*
59+
60+
*.log

internal/database/database.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type Credential struct {
3131
}
3232

3333
func New(dbPath string) (*DB, error) {
34-
conn, err := sql.Open("sqlite3", dbPath+"?_fk=1")
34+
conn, err := sql.Open("sqlite", dbPath+"?_fk=1")
3535
if err != nil {
3636
return nil, err
3737
}

0 commit comments

Comments
 (0)