From b1451339e3d07fda0be1b939938800911bb09006 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Duczymi=C5=84ski?= Date: Wed, 22 Jun 2022 15:17:17 +0200 Subject: [PATCH] [docs] Fix the docs for production class generation (#31933) --- docs/data/styles/advanced/advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/styles/advanced/advanced.md b/docs/data/styles/advanced/advanced.md index 323feefda31a4a..c20bec49ab8c4b 100644 --- a/docs/data/styles/advanced/advanced.md +++ b/docs/data/styles/advanced/advanced.md @@ -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**: