From 0ff8a1a37a9aa21f23c1c8d0f7fc7ce4b04ae14b Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Wed, 18 Mar 2026 20:56:40 +0500 Subject: [PATCH] refactor(auth): use wildcard type constructor import Signed-off-by: Taimoor Zaeem --- src/PostgREST/Auth/Jwt.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/PostgREST/Auth/Jwt.hs b/src/PostgREST/Auth/Jwt.hs index c3e55fd42..e63664e04 100644 --- a/src/PostgREST/Auth/Jwt.hs +++ b/src/PostgREST/Auth/Jwt.hs @@ -32,8 +32,7 @@ import Data.Time.Clock.POSIX (utcTimeToPOSIXSeconds) import PostgREST.Auth.Types (AuthResult (..)) import PostgREST.Config (AppConfig (..), audMatchesCfg) import PostgREST.Config.JSPath (walkJSPath) -import PostgREST.Error (Error (..), - JwtClaimsError (AudClaimNotStringOrArray, ExpClaimNotNumber, IatClaimNotNumber, JWTExpired, JWTIssuedAtFuture, JWTNotInAudience, JWTNotYetValid, NbfClaimNotNumber, ParsingClaimsFailed), +import PostgREST.Error (Error (..), JwtClaimsError (..), JwtDecodeError (..), JwtError (..)) import Data.Aeson ((.:?))