Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit b9f5796

Browse files
committed
Fix bug with offset calculation
1 parent 3887259 commit b9f5796

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/setupContext.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ function registerPlugins(tailwindConfig, plugins, context) {
504504
}
505505
}
506506

507-
let highestOffset = ((...args) => args.reduce((m, e) => (e > m ? e : m)))([
507+
let highestOffset = ((args) => args.reduce((m, e) => (e > m ? e : m)))([
508508
offsets.base,
509509
offsets.components,
510510
offsets.utilities,

0 commit comments

Comments
 (0)