Skip to content

Commit

Permalink
fix(mixins-flex-props-main): 🐛 replace map-get with map.get
Browse files Browse the repository at this point in the history
  • Loading branch information
krypton225 committed Nov 16, 2024
1 parent 94d979d commit 297ad51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mixins/flex-props/main-props/_flex-wrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

@if LibFunc.is-in-list(map.keys($flex-wrap-map), $value) {
// stylelint-disable-next-line scss/no-global-function-names
$flex-wrap-value: map-get($flex-wrap-map, $value);
$flex-wrap-value: map.get($flex-wrap-map, $value);

@include LibMixin.prefixing-ms(flex-wrap, $flex-wrap-value);
} @else {
Expand Down

0 comments on commit 297ad51

Please sign in to comment.