Skip to content

Commit

Permalink
Remove default export
Browse files Browse the repository at this point in the history
  • Loading branch information
anselmbradford committed Aug 14, 2024
1 parent 0a3b8ee commit 44c6a64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cfpb-design-system/src/abstracts/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * as varsBreakpoints from './vars-breakpoints';
export { varsBreakpoints } from './vars-breakpoints';
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
they need to be adjusted in vars-breakpoints.scss as well.
========================================================================== */

export default {
export const varsBreakpoints = {
bpXS: {
min: 0,
max: 600,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Get Breakpoint State
========================================================================== */

import varsBreakpoints from '../abstracts/vars-breakpoints.js';
import { varsBreakpoints } from '../abstracts/vars-breakpoints.js';

/**
* @returns {number} The base font size set on the body element.
Expand Down

0 comments on commit 44c6a64

Please sign in to comment.