diff --git a/routes/_components/compose/ComposeAutosuggest.html b/routes/_components/compose/ComposeAutosuggest.html index de65449..e7c6a9f 100644 --- a/routes/_components/compose/ComposeAutosuggest.html +++ b/routes/_components/compose/ComposeAutosuggest.html @@ -60,14 +60,14 @@ // perf improves for input responsiveness this.observe('composeSelectionStart', () => { scheduleIdleTask(() => { - let { composeSelectionStart } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354 + let { composeSelectionStart } = this.get() this.set({composeSelectionStartDeferred: composeSelectionStart}) }) }) this.observe('composeFocused', (composeFocused) => { let updateFocusedState = () => { scheduleIdleTask(() => { - let { composeFocused } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354 + let { composeFocused } = this.get() this.set({composeFocusedDeferred: composeFocused}) }) } diff --git a/routes/_components/compose/ComposeLengthGauge.html b/routes/_components/compose/ComposeLengthGauge.html index e6e3883..fc8e122 100644 --- a/routes/_components/compose/ComposeLengthGauge.html +++ b/routes/_components/compose/ComposeLengthGauge.html @@ -32,7 +32,7 @@ this.observe('lengthAsFraction', () => { scheduleIdleTask(() => { mark('set lengthAsFractionDeferred') - let { lengthAsFraction } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354 + let { lengthAsFraction } = this.get() this.set({lengthAsFractionDeferred: lengthAsFraction}) stop('set lengthAsFractionDeferred') requestAnimationFrame(() => this.set({shouldAnimate: true})) diff --git a/routes/_components/compose/ComposeLengthIndicator.html b/routes/_components/compose/ComposeLengthIndicator.html index efc1096..204a0cc 100644 --- a/routes/_components/compose/ComposeLengthIndicator.html +++ b/routes/_components/compose/ComposeLengthIndicator.html @@ -30,7 +30,7 @@ this.observe('lengthToDisplay', () => { scheduleIdleTask(() => { mark('set lengthToDisplayDeferred') - let { lengthToDisplay } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354 + let { lengthToDisplay } = this.get() this.set({lengthToDisplayDeferred: lengthToDisplay}) stop('set lengthToDisplayDeferred') }) diff --git a/routes/_components/pseudoVirtualList/PseudoVirtualListItem.html b/routes/_components/pseudoVirtualList/PseudoVirtualListItem.html index 1c9b38b..1a235c8 100644 --- a/routes/_components/pseudoVirtualList/PseudoVirtualListItem.html +++ b/routes/_components/pseudoVirtualList/PseudoVirtualListItem.html @@ -27,7 +27,7 @@ // unrender lazily; it's not a critical UI task scheduleIdleTask(() => { mark('unrender') - let { isIntersecting } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354 + let { isIntersecting } = this.get() if (!isIntersecting) { this.set({hide: true}) } diff --git a/routes/_components/pseudoVirtualList/PseudoVirtualListLazyItem.html b/routes/_components/pseudoVirtualList/PseudoVirtualListLazyItem.html index f382ed1..743d429 100644 --- a/routes/_components/pseudoVirtualList/PseudoVirtualListLazyItem.html +++ b/routes/_components/pseudoVirtualList/PseudoVirtualListLazyItem.html @@ -17,7 +17,7 @@ export default { async oncreate () { - let { makeProps, key } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354 + let { makeProps, key } = this.get() if (makeProps) { let props = await makeProps(key) mark('PseudoVirtualListLazyItem set props') diff --git a/routes/_components/timeline/Timeline.html b/routes/_components/timeline/Timeline.html index f662f1c..ec81c45 100644 --- a/routes/_components/timeline/Timeline.html +++ b/routes/_components/timeline/Timeline.html @@ -169,11 +169,7 @@ this.set({scrollTop: scrollTop}) }, onScrollToBottom () { - let state = this.store.get() - if (!state) { - return // https://github.com/sveltejs/svelte/issues/1354 - } - let { timelineType } = state + let { timelineType } = this.store.get() let { timelineInitialized, runningUpdate } = this.store.get() if (!timelineInitialized || runningUpdate || @@ -200,7 +196,7 @@ let { currentInstance } = this.store.get() let { timeline } = this.get() let handleItemIdsToAdd = () => { - let { itemIdsToAdd } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354 + let { itemIdsToAdd } = this.get() if (!itemIdsToAdd || !itemIdsToAdd.length) { return } diff --git a/routes/_components/virtualList/VirtualListLazyItem.html b/routes/_components/virtualList/VirtualListLazyItem.html index 653b029..3aa837c 100644 --- a/routes/_components/virtualList/VirtualListLazyItem.html +++ b/routes/_components/virtualList/VirtualListLazyItem.html @@ -12,7 +12,7 @@ export default { async oncreate () { - let { makeProps, key } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354 + let { makeProps, key } = this.get() if (makeProps) { let props = await makeProps(key) mark('VirtualListLazyItem set props')