We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d49aa23 commit a144947Copy full SHA for a144947
src/common/className.ts
@@ -13,7 +13,7 @@ export function prefixClaName(name: string, prefix: string = APP_PREFIX) {
13
14
export function classNames(...args) {
15
if (isEmpty(args)) return;
16
- let classList: string[] = [];
+ const classList: string[] = [];
17
for (const arg of args) {
18
if (!arg) continue;
19
const argType = typeof arg;
0 commit comments