wso2 / product-is

Welcome to the WSO2 Identity Server source code! For info on working with the WSO2 Identity Server repository and contributing code, click the link below.
http://wso2.github.io/
Apache License 2.0
748 stars 729 forks source link

Fix circular dependency issue in ServerConfigurationsConstants #21766

Open PasinduYeshan opened 5 days ago

PasinduYeshan commented 5 days ago

Describe the issue: Importing ServerConfigurationsConstants in identity-apps as shown below causes an error in unit tests:

import { ServerConfigurationsConstants } from "@wso2is/admin.server-configurations.v1";

However, the following import works without any issue:

import { ServerConfigurationsConstants } from "@wso2is/admin.server-configurations.v1/constants/server-configurations-constants";

This discrepancy indicates a potential circular dependency problem in ServerConfigurationsConstants.