Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cannot read properties of undefined (reading 'modifier') #9656

Merged
merged 5 commits into from Nov 3, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/lib/setupContextUtils.js
Expand Up @@ -584,7 +584,7 @@ function buildPluginApi(tailwindConfig, context, { variantList, variantMap, offs
({ args, container }) =>
variantFn(
value,
modifiersEnabled ? { modifier: args.modifier, container } : { container }
modifiersEnabled ? { modifier: (args ?? {}).modifier, container } : { container }
),
{
...options,
Expand All @@ -601,6 +601,10 @@ function buildPluginApi(tailwindConfig, context, { variantList, variantMap, offs
api.addVariant(
variant,
({ args, container }) => {
if (!args) {
return null
}

if (args.value === sharedState.NONE && !hasDefault) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if (!args ||  args.value === sharedState.NONE && !hasDefault) {
return null;
}

return null
}
Expand Down