Skip to content

Commit 2f4c11d

Browse files
authored
Fix types causing build to break (#1079)
1 parent 14facf1 commit 2f4c11d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/core/src/views/notify/Notification.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
const { device } = configuration
1414
1515
export let notification: Notification
16-
export let updateParentOnRemove
16+
export let updateParentOnRemove: () => void
1717
1818
let timeoutId: NodeJS.Timeout
1919

packages/core/src/views/notify/StatusIconBadge.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<script lang="ts">
22
import ChainBadge from './ChainBadge.svelte'
33
import { defaultNotifyEventStyles, unrecognizedChainStyle } from '../../utils'
4-
import type { NotificationObject, ChainStyle } from '../../types'
4+
import type { Notification, ChainStyle } from '../../types'
55
export let chainStyles: ChainStyle = unrecognizedChainStyle
6-
export let notification: NotificationObject
6+
export let notification: Notification
77
</script>
88

99
<style>

0 commit comments

Comments
 (0)