Description
This PR moves the OwnerUserAuthenticationData interface from src/app/network/types.ts to src/app/network/types/index.ts.
The reason for this change is that both files were being imported under the same name (./types), which caused TypeScript compilation errors:
- Module '"./types"' has no exported member 'LegacyShardMeta'
- Module '"./types"' has no exported member 'ShardMeta'
Since src/app/network/types.ts only contained this single type and all other related types are already defined in index.ts, the redundant file has been removed.
Related Issues
Related Pull Requests
Checklist
- Changes have been tested locally.
- Unit tests have been written or updated as necessary.
- The code adheres to the repository's coding standards.
- Relevant documentation has been added or updated.
- No new warnings or errors have been introduced.
- SonarCloud issues have been reviewed and addressed.
- QA Passed