Skip to content

Commit

Permalink
Merge pull request #2018 from cfpb/ans_default_exporrt
Browse files Browse the repository at this point in the history
Remove default export
  • Loading branch information
anselmbradford authored Aug 15, 2024
2 parents 0a3b8ee + 44c6a64 commit 0e6b8b5
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 0e6b8b5

Please sign in to comment.