Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/src/views/notify/Notification.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
const { device } = configuration

export let notification: Notification
export let updateParentOnRemove
export let updateParentOnRemove: () => void

let timeoutId: NodeJS.Timeout

Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/views/notify/StatusIconBadge.svelte
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script lang="ts">
import ChainBadge from './ChainBadge.svelte'
import { defaultNotifyEventStyles, unrecognizedChainStyle } from '../../utils'
import type { NotificationObject, ChainStyle } from '../../types'
import type { Notification, ChainStyle } from '../../types'
export let chainStyles: ChainStyle = unrecognizedChainStyle
export let notification: NotificationObject
export let notification: Notification
</script>

<style>
Expand Down