Skip to content
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

feat: v7.36.0 #12314

Merged
merged 20 commits into from
Dec 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4787841
Update changelog for 7.36.0 release
sethkfman Nov 16, 2024
c6362ff
Bump version number to 1501
metamaskbot Nov 16, 2024
642e534
bump semver 7.36.0 android
sethkfman Nov 16, 2024
b7ac57e
chore: Cherry pick f35d583 (#12343)
sethkfman Nov 19, 2024
44843ad
chore(runway): cherry-pick fix: tags pending approvals receiving unde…
runway-github[bot] Nov 20, 2024
4114259
chore: cherrypick do not show staked eth balance when balance is zero…
nickewansmith Nov 20, 2024
8d02f7d
fix: fix missing variable patch (#12402)
sahar-fehri Nov 22, 2024
e618c25
chore(runway): cherry-pick fix: breaking selector due to missing cont…
runway-github[bot] Nov 25, 2024
5bd749c
chore: Cherry pick 2506358 (merge in trackEvent work) (#12415)
Nov 25, 2024
eed3576
Bump version number to 1503
metamaskbot Nov 25, 2024
1b670f5
[chore] Merge in feat: updated staking events to use withMetaMetrics …
Nov 26, 2024
c7ddd29
chore(runway): cherry-pick fix: update wallet_addEthereumChain.js wit…
runway-github[bot] Nov 26, 2024
9437aa2
Bump version number to 1504
metamaskbot Nov 26, 2024
b6868d6
Bump version number to 1505
metamaskbot Nov 27, 2024
92f1d99
chore(runway): cherry-pick fix: gas fee edit from swaps (#12471)
runway-github[bot] Nov 27, 2024
3e52404
sync with main
sethkfman Dec 4, 2024
66ce567
revert additional changes
sethkfman Dec 4, 2024
f490835
fixed xcode proj changes
sethkfman Dec 4, 2024
16a77da
Update Attributions
metamaskbot Dec 4, 2024
c7a17fc
remove notification formating
sethkfman Dec 4, 2024
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
Prev Previous commit
remove notification formating
  • Loading branch information
sethkfman committed Dec 4, 2024
commit c7a17fcd6985fd95401367fe353878266e8772fd
4 changes: 2 additions & 2 deletions app/util/notifications/services/NotificationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,9 @@ class NotificationsService {
getInitialNotification = async (
callback: HandleNotificationCallback
): Promise<void> => {
const event = await notifee.getInitialNotification();
const event = await notifee.getInitialNotification()
if (event) {
callback(event.notification.data as Notification['data']);
callback(event.notification.data as Notification['data'])
}
};

Expand Down
Loading