From 1205625a63c0a6ccf4e32177a2b1374488ff1895 Mon Sep 17 00:00:00 2001 From: Charles Garrett Date: Tue, 5 Mar 2024 17:05:49 -0500 Subject: [PATCH] test: temporarlily adding Spain to the excluded countries list to facilitate testing --- src/middleware.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/middleware.ts b/src/middleware.ts index 462bd1c33..8d71c426d 100644 --- a/src/middleware.ts +++ b/src/middleware.ts @@ -2,7 +2,7 @@ import type { NextRequest } from 'next/server'; import { NextResponse } from 'next/server'; //https://www.iban.com/country-codes -const IBAN_BLOCKED_REGIONS = ['CU', 'IR', 'KP', 'SY']; +const IBAN_BLOCKED_REGIONS = ['CU', 'IR', 'KP', 'SY', 'ES']; // Todo remove ES // Limit middleware triggering to specific routes export const config = {