From 68434ac5a7288d6b7f0b2a73a9afef6e747bb32c Mon Sep 17 00:00:00 2001 From: Peter Murphy Date: Fri, 22 Mar 2024 16:34:39 +0000 Subject: [PATCH] (MAINT) Fix Authentication component styling bundling issue - Imported the SCSS stylesheet into the index.js file to ensure it gets bundled by Webpack. - This change resolves the problem where the Authentication component's styling was not being applied due to the stylesheet not being bundled. --- packages/react-layouts/src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react-layouts/src/index.js b/packages/react-layouts/src/index.js index 6afa665fe..7ec17abf7 100644 --- a/packages/react-layouts/src/index.js +++ b/packages/react-layouts/src/index.js @@ -1,5 +1,6 @@ import Authentication from './Authentication'; import Columns from './Columns'; import PageContent from './PageContent'; +import 'index.scss'; export { Authentication, Columns, PageContent };