Skip to content

Commit

Permalink
adapt zenko client to new path
Browse files Browse the repository at this point in the history
  • Loading branch information
MonPote committed Jul 16, 2024
1 parent 8b1f31d commit e5c067d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/react/actions/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function loadAppConfig(config: AppConfig, user): ThunkNonStateAction {
config.zenkoEndpoint,
config.iamInternalFQDN,
config.s3InternalFQDN,
process.env.NODE_ENV === 'development' ? '' : config.basePath,
config.basePath,
),
),
);
Expand Down
4 changes: 2 additions & 2 deletions src/react/next-architecture/ui/S3ClientProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const S3ClientProvider = ({
s3Config.endpoint,
iamInternalFQDN,
s3InternalFQDN,
process.env.NODE_ENV === 'development' ? '' : basePath,
basePath,
);
const iamClient = new IAMClient(iamEndpoint);

Expand Down Expand Up @@ -110,7 +110,7 @@ export const S3ClientWithoutReduxProvider = ({
s3Config.endpoint,
iamInternalFQDN,
s3InternalFQDN,
process.env.NODE_ENV === 'development' ? '' : basePath,
basePath,
);
const iamClient = new IAMClient(iamEndpoint);

Expand Down

0 comments on commit e5c067d

Please sign in to comment.