Skip to content

Commit 79ccb7e

Browse files
committed
lint
1 parent 997a542 commit 79ccb7e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

packages/repl/src/lib/Output/PaneWithPanel.svelte

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
88
export let panel: string;
99
10-
export let header = true;
11-
1210
export let pos: Exclude<ComponentProps<SplitPane>['pos'], undefined> = '90%';
1311
1412
$: previous_pos = Math.min(+pos.replace(UNIT_REGEX, '$1'), 70);

packages/repl/src/lib/Output/Viewer.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
export let theme: 'light' | 'dark';
2929
/** A store containing the current bundle result. Takes precedence over REPL context, if set */
3030
export let bundle: Writable<Bundle | null> | undefined = undefined;
31-
/** Called everytime a log is pushed. If this is set, the built-in console coming with the Viewer isn't shown */
31+
/** Called everytime a log is pushed. If this is set, the built-in console coming with the Viewer isn't shown */
3232
export let onLog: ((logs: Log[]) => void) | undefined = undefined;
3333
3434
const context = get_repl_context();

0 commit comments

Comments
 (0)