Skip to content

Commit

Permalink
Fix length issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AnjanaSamindraPerera committed Oct 3, 2024
1 parent 123e94c commit 4ee2f5e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ export const ApplicationMarkdownGuide: FunctionComponent<ApplicationMarkdownGuid
const clientOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.clientOrigin);
const serverOrigin: string = useSelector((state: AppState) => state?.config?.deployment?.idpConfigs?.serverOrigin);
const productName: string = useSelector((state: AppState) => state?.config?.ui?.productName);
const accountAppURL: string = useSelector((state: AppState) => state.config.deployment.accountApp.tenantQualifiedPath);
const accountAppURL: string = useSelector((state: AppState) =>
state?.config?.deployment?.accountApp?.tenantQualifiedPath);

/**
* Convert certificate into the pem format.
Expand Down

0 comments on commit 4ee2f5e

Please sign in to comment.