Skip to content

Commit

Permalink
regression(fuselage-ui-kit): Use default translation namespace for `-…
Browse files Browse the repository at this point in the history
…core` apps
  • Loading branch information
tassoevan committed Apr 1, 2024
1 parent d1fd9da commit a9b8c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fuselage-ui-kit/src/hooks/useAppTranslation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useAppId } from '../contexts/AppIdContext';

export const useAppTranslation = () => {
const appId = useAppId();
const appNs = `app-${appId}`;
const appNs = appId.endsWith(`-core`) ? undefined : `app-${appId}`;

useDebugValue(appNs);

Expand Down

0 comments on commit a9b8c69

Please sign in to comment.