Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
thecrypticace committed Jun 19, 2023
1 parent 9fd458f commit a29b748
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/corePlugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,7 @@ export let variantPlugins = {

let pseudo = result.slice(start + 1, end)

pseudo = config('prefix')
? `:tw-no-prefix(${pseudo})`
: pseudo
pseudo = config('prefix') ? `:tw-no-prefix(${pseudo})` : pseudo

return result.slice(0, start) + a + pseudo + b + result.slice(end)
},
Expand Down

0 comments on commit a29b748

Please sign in to comment.