Skip to content

Commit

Permalink
[docs] Fix the docs for production class generation (#31933)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fafruch committed Jun 22, 2022
1 parent 46be719 commit b145133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/data/styles/advanced/advanced.md
Expand Up @@ -447,7 +447,7 @@ const className = `${sheetName}-${ruleName}-${identifier}`;
const productionPrefix = 'jss';
const identifier = 123;

const className = `${productionPrefix}-${identifier}`;
const className = `${productionPrefix}${identifier}`;
```

However, when the following conditions are met, the class names are **deterministic**:
Expand Down

0 comments on commit b145133

Please sign in to comment.