Skip to content

chore(deps): bump @sentry/electron from 4.24.0 to 6.8.0 in /packages/desktop #8752

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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/desktop/package.json
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@
},
"dependencies": {
"@amplitude/analytics-node": "^1.1.3",
"@sentry/electron": "^4.10.0",
"@sentry/electron": "^6.8.0",
"@types/webpack-dev-server": "^4.7.2",
"dotenv": "^16.0.3",
"electron-dl": "^3.5.1",

Unchanged files with check annotations Beta

{#each Object.keys(filter) as filterUnit, index}
<FilterItem
bind:filterUnit={filter[filterUnit]}
on:toggle={() => toggleFilterItem(index)}

Check warning on line 64 in packages/desktop/components/filter/Filter.svelte

GitHub Actions / lint

Missing return type on function
on:open={() => openFilterItem(index)}

Check warning on line 65 in packages/desktop/components/filter/Filter.svelte

GitHub Actions / lint

Missing return type on function
isOpen={openFilterItemIndex === index}
/>
{/each}
{#each payouts as payout}
{@const onMouseEnterOutput = handleHoverEvent(payout)}
{@const onMouseLeaveOutput = handleHoverEvent()}
<vesting-output

Check warning on line 71 in packages/desktop/components/VestingSchedule.svelte

GitHub Actions / lint

A11y: visible, non-interactive elements with an on:click event must be accompanied by an on:keydown, on:keyup, or on:keypress event
on:mouseleave={onMouseLeaveOutput}
on:mouseenter={onMouseEnterOutput}
on:click={() => onPayoutClick(payout)}

Check warning on line 74 in packages/desktop/components/VestingSchedule.svelte

GitHub Actions / lint

Missing return type on function
class:unlocked={payout.status === VestingOutputStatus.Unlocked}
/>
{/each}
<Icon icon={IconEnum.Minimize} />
</button>
<button
on:click={async () => (isMaximized = await Platform.maximize())}

Check warning on line 54 in packages/desktop/components/TitleBar.svelte

GitHub Actions / lint

Missing return type on function
class="p-2 text-gray-500 dark:text-gray-100"
type="button"
>
let scroller: HTMLElement
let sections: NodeListOf<Element>
function update() {

Check warning on line 14 in packages/desktop/components/Scroller.svelte

GitHub Actions / lint

Missing return type on function
if (!scroller) {
return
}
scroller.addEventListener('resize', update)
}
update()
return () => {

Check warning on line 38 in packages/desktop/components/Scroller.svelte

GitHub Actions / lint

Missing return type on function
scroller.removeEventListener('scroll', update)
scroller.removeEventListener('resize', update)
}
cursor-pointer dark:border-transparent dark:bg-gray-850"
class:animate-pulse={isLoading}
>
<button on:click={() => onQuestionClick(questionIndex)} class="flex justify-between items-center text-left">

Check warning on line 56 in packages/desktop/components/ProposalQuestion.svelte

GitHub Actions / lint

Missing return type on function
<div class="flex flex-col min-w-0">
{#if questionIndex !== undefined}
<Text smaller fontWeight={FontWeight.bold} overrideColor classes="mb-1 text-blue-500">
isWinner={answerIndex === winnerAnswerIndex}
proposalStatus={$selectedProposal?.status}
truncate={!isOpened}
onAnswerClick={() => onAnswerClick(answer.value, questionIndex)}

Check warning on line 98 in packages/desktop/components/ProposalQuestion.svelte

GitHub Actions / lint

Missing return type on function
/>
{/each}
</proposal-answers>
<proposal-card
on:click={onProposalClick}
on:keydown={(e) => e.key === 'Enter' && onProposalClick()}

Check warning on line 40 in packages/desktop/components/ProposalCard.svelte

GitHub Actions / lint

Missing return type on function
class:dark
class:ended={proposal?.status === ProposalStatus.Ended}
class="flex flex-col p-6 border border-solid border-gray-200 dark:border-transparent rounded-xl cursor-pointer h-fit shadow-elevation-1 focus:shadow-inner