generated from nhcarrigan/template
style: fix lint errors and format issues
- Remove unused configStore import from CompactMode.svelte - Add key to each block in CompactMode.svelte - Fix useless escape characters in config.ts path masking - Apply Prettier formatting to StatusBar, Terminal, and +page.svelte
This commit is contained in:
@@ -194,9 +194,15 @@
|
||||
<span class="terminal-tool-name mr-2">[{line.toolName}]</span>
|
||||
{/if}
|
||||
{#if line.type === "assistant"}
|
||||
<Markdown content={maskPaths(line.content, hidePaths)} searchQuery={currentSearchQuery} />
|
||||
<Markdown
|
||||
content={maskPaths(line.content, hidePaths)}
|
||||
searchQuery={currentSearchQuery}
|
||||
/>
|
||||
{:else}
|
||||
<HighlightedText content={maskPaths(line.content, hidePaths)} searchQuery={currentSearchQuery} />
|
||||
<HighlightedText
|
||||
content={maskPaths(line.content, hidePaths)}
|
||||
searchQuery={currentSearchQuery}
|
||||
/>
|
||||
{/if}
|
||||
</div>
|
||||
{/each}
|
||||
|
||||
Reference in New Issue
Block a user