Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
Swapped condition order
Browse files Browse the repository at this point in the history
  • Loading branch information
artpark committed Jan 23, 2024
1 parent f8bfdc4 commit a5e4ba8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const ApplicationBase = ({
const { localeOverride, themeOverride } = useTestOverrides(); // Allows us to test deployed applications in different locales.

let density = themeDensity || themeConfig?.density;
if (!density && themeName === 'redwood-theme') {
if (themeName === 'redwood-theme' && !density) {
density = 'comfortable';
}

Expand Down

0 comments on commit a5e4ba8

Please sign in to comment.