diff --git a/package-lock.json b/package-lock.json index 6036ac7..19de6d8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1007,7 +1007,7 @@ }, "node_modules/@quartz-community/types": { "version": "0.2.1", - "resolved": "git+ssh://git@github.com/quartz-community/types.git#a945040888d4e1b97f81cffa094877d74a5f4d0e", + "resolved": "git+ssh://git@github.com/quartz-community/types.git#c7df97d0def545b73fe433b7ef9d8ffb6694cf57", "license": "MIT", "dependencies": { "@types/hast": "^3.0.4", diff --git a/src/util/lang.ts b/src/util/lang.ts index 6f22341..5610168 100644 --- a/src/util/lang.ts +++ b/src/util/lang.ts @@ -1,5 +1,3 @@ -export function classNames( - ...classes: (string | undefined | null | false)[] -): string { +export function classNames(...classes: (string | undefined | null | false)[]): string { return classes.filter(Boolean).join(" "); }