From eed81fa213bc0bd26384074bf0007323f04623f7 Mon Sep 17 00:00:00 2001 From: matthewp Date: Tue, 8 Nov 2022 17:17:13 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/runtime/server/render/common.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/astro/src/runtime/server/render/common.ts b/packages/astro/src/runtime/server/render/common.ts index ef33ae3ee..9563959d2 100644 --- a/packages/astro/src/runtime/server/render/common.ts +++ b/packages/astro/src/runtime/server/render/common.ts @@ -40,11 +40,11 @@ export function stringifyChunk(result: SSRResult, chunk: string | SlotString | R } } default: { - if(isSlotString(chunk as string)) { + if (isSlotString(chunk as string)) { let out = ''; - const c = (chunk as SlotString); - if(c.instructions) { - for(const instr of c.instructions) { + const c = chunk as SlotString; + if (c.instructions) { + for (const instr of c.instructions) { out += stringifyChunk(result, instr); } }