File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,9 @@ const renderApplyHmr = ({
76
76
emitCss,
77
77
imports = [
78
78
`import * as ${ globalName } from ${ JSON . stringify ( hotApiImport ) } ` ,
79
- `import { adapter as ${ importAdapterName } } from ${ JSON . stringify ( adapterImport ) } ` ,
79
+ `import { adapter as ${ importAdapterName } } from ${ JSON . stringify (
80
+ adapterImport
81
+ ) } `,
80
82
] ,
81
83
} ) =>
82
84
// this silly formatting keeps all original characters in their position,
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ export const adapter = class ProxyAdapterNative extends ProxyAdapterDom {
228
228
const newPageElement = this . nativePageElement
229
229
230
230
// svelte-native uses navigateFrom event + e.isBackNavigation to know when to $destroy the component.
231
- // To keep that behaviour after refresh, we move event handler from old native view to the new one using
231
+ // To keep that behaviour after refresh, we move event handler from old native view to the new one using
232
232
// __navigateFromHandler property that svelte-native provides us with.
233
233
const navigateFromHandler = oldNativeView . __navigateFromHandler
234
234
if ( navigateFromHandler ) {
You can’t perform that action at this time.
0 commit comments