From 4d7b905e98c8100d680aff80f2cbf7fe4bd2a693 Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Mon, 16 Jun 2025 11:33:05 -0400 Subject: [PATCH] fix typo --- server/db/sqlite/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/db/sqlite/schema.ts b/server/db/sqlite/schema.ts index a771c4a2..3398cc6d 100644 --- a/server/db/sqlite/schema.ts +++ b/server/db/sqlite/schema.ts @@ -47,7 +47,7 @@ export const sites = sqliteTable("sites", { // exit node stuff that is how to connect to the site when it has a wg server address: text("address"), // this is the address of the wireguard interface in newt endpoint: text("endpoint"), // this is how to reach gerbil externally - gets put into the wireguard config - publicKey: text("pubicKey"), + publicKey: text("pubicKey"), // TODO: Fix typo in publicKey lastHolePunch: integer("lastHolePunch"), listenPort: integer("listenPort"), dockerSocketEnabled: integer("dockerSocketEnabled", { mode: "boolean" })