From 0546a193e03ce74688930b9a68dab373837c9c2c Mon Sep 17 00:00:00 2001 From: "J. Lewis" <6710419+lewxdev@users.noreply.github.com> Date: Tue, 27 Aug 2024 15:57:57 -0400 Subject: [PATCH 1/2] fix: build and runtime secrets I guess --- .github/workflows/fly-review.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/fly-review.yml b/.github/workflows/fly-review.yml index 1534f34..198b822 100644 --- a/.github/workflows/fly-review.yml +++ b/.github/workflows/fly-review.yml @@ -31,4 +31,6 @@ jobs: uses: lewxdev/fly-pr-review-apps@main with: build_secrets: BASE_URL=https://${{ env.FLY_APP }}.fly.dev - secrets: REDIS_URL=${{ secrets.REDIS_URL }} + secrets: | + BASE_URL=https://${{ env.FLY_APP }}.fly.dev + REDIS_URL=${{ secrets.REDIS_URL }} From 83991e857c3aff62f78bc74d47a0571b7dd0c7a1 Mon Sep 17 00:00:00 2001 From: "J. Lewis" <6710419+lewxdev@users.noreply.github.com> Date: Tue, 27 Aug 2024 16:19:42 -0400 Subject: [PATCH 2/2] fix: broken padding when field-size is set --- app/components/field.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/field.tsx b/app/components/field.tsx index 79a169a..02197f3 100644 --- a/app/components/field.tsx +++ b/app/components/field.tsx @@ -39,7 +39,7 @@ export function Field() { useEffect(() => { document.documentElement.style.setProperty( "--field-size", - size ? `${size * GRID_SIZE + (size - 1) * GAP_SIZE}rem` : "100%", + size ? `${size * GRID_SIZE + (size - 1) * GAP_SIZE + 2}rem` : "100%", ); }, [size]);