Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-03-31 14:39:04 -03:00
parent 8b792e1d44
commit 0bea4173f5
18 changed files with 517 additions and 192 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ export const BrandingProvider: React.FC<{ children: React.ReactNode }> = ({ chil
return;
}
try {
const data = await cmsApi.getBranding(user.organization_id);
const data = await cmsApi.getBranding();
// Translate BrandingResponse to Organization shape (partial)
const orgData = {
id: user.organization_id,