Skip to content

Commit e87a578

Browse files
committed
chore: cleanup 🧹
1 parent 28ce394 commit e87a578

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

packages/workshop-app/app/styles/tailwind.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,11 +255,15 @@
255255

256256
/* removeCodeBackticks */
257257
.prose
258-
:where(code):not(:where([class~='not-prose'], [class~='not-prose'] *))::before {
258+
:where(code):not(
259+
:where([class~='not-prose'], [class~='not-prose'] *)
260+
)::before {
259261
content: none;
260262
}
261263
.prose
262-
:where(code):not(:where([class~='not-prose'], [class~='not-prose'] *))::after {
264+
:where(code):not(
265+
:where([class~='not-prose'], [class~='not-prose'] *)
266+
)::after {
263267
content: none;
264268
}
265269
}

packages/workshop-utils/src/apps.server.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1060,11 +1060,7 @@ async function getExtraApps({
10601060
withFileTypes: true,
10611061
})
10621062
} catch (error) {
1063-
if (
1064-
error instanceof Error &&
1065-
'code' in error &&
1066-
error.code === 'ENOENT'
1067-
) {
1063+
if (error instanceof Error && 'code' in error && error.code === 'ENOENT') {
10681064
return []
10691065
}
10701066
throw error

0 commit comments

Comments
 (0)