Merge classnames to clsx

This commit is contained in:
DefectingCat
2022-11-22 14:32:57 +08:00
parent 289b5075ad
commit 77b64ef7fe
32 changed files with 106 additions and 123 deletions

View File

@ -38,11 +38,7 @@ async function pushAlgolia(gists) {
// check the output of the response in the console
console.log(
`🎉 Sucessfully added ${
algoliaResponse.objectIDs.length
} records to Algolia search. Object IDs:\n${algoliaResponse.objectIDs.join(
'\n'
)}`
`🎉 Sucessfully added ${algoliaResponse.objectIDs.length} records to Algolia search.`
);
} catch (e) {
console.log(e);
@ -65,4 +61,4 @@ function main() {
isTest ? test(gists) : pushAlgolia(gists);
}
main();
main();