Skip to content

Commit 60b3903

Browse files
committed
chore: Fix astro.config.mjs
1 parent 753a24e commit 60b3903

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/typegpu-docs/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import remarkMath from 'remark-math';
1919
* @param {T[]} items
2020
*/
2121
const stripFalsy = (items) =>
22-
items.filter(/** @return {item is Exclude<T, boolean>} */(item) => !!item);
22+
items.filter(/** @return {item is Exclude<T, boolean>} */ (item) => !!item);
2323

2424
const DEV = import.meta.env.DEV;
2525

0 commit comments

Comments
 (0)