From d8a992ce382efeafcbe89d50085f59e1e128a11f Mon Sep 17 00:00:00 2001 From: "Sean M. Collins" Date: Fri, 7 Mar 2025 18:29:52 -0500 Subject: [PATCH] Set same_site to correct type Fixes #170 --- demo/src/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/src/main.zig b/demo/src/main.zig index 26f638a..b306e70 100644 --- a/demo/src/main.zig +++ b/demo/src/main.zig @@ -87,7 +87,7 @@ pub const jetzig_options = struct { .path = "/", }, .production => .{ - .same_site = true, + .same_site = .lax, .secure = true, .http_only = true, .path = "/",