Skip to content

Commit 73b412d

Browse files
committed
feat: stabilize notification order during notification interactions
Signed-off-by: Adam Setch <[email protected]>
1 parent 986581c commit 73b412d

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/renderer/typesGitHub.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ export interface GitHubNotification {
113113
export interface GitifyNotification {
114114
account: Account;
115115
order: number;
116-
groupName: string | null;
117116
}
118117

119118
export type UserDetails = User & UserProfile;

src/renderer/utils/api/__mocks__/response-mocks.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ export const mockNotificationUser: User = {
4545
export const mockGitHubNotifications: Notification[] = [
4646
{
4747
account: mockGitHubCloudAccount,
48-
groupName: null,
4948
order: 0,
5049
id: '138661096',
5150
unread: true,
@@ -199,7 +198,6 @@ export const mockGitHubNotifications: Notification[] = [
199198
},
200199
{
201200
account: mockGitHubCloudAccount,
202-
groupName: null,
203201
order: 1,
204202
id: '148827438',
205203
unread: true,
@@ -264,7 +262,6 @@ export const mockGitHubNotifications: Notification[] = [
264262
export const mockEnterpriseNotifications: Notification[] = [
265263
{
266264
account: mockGitHubEnterpriseServerAccount,
267-
groupName: null,
268265
order: 0,
269266
id: '3',
270267
unread: true,
@@ -322,7 +319,6 @@ export const mockEnterpriseNotifications: Notification[] = [
322319
},
323320
{
324321
account: mockGitHubEnterpriseServerAccount,
325-
groupName: null,
326322
order: 1,
327323
id: '4',
328324
unread: true,

0 commit comments

Comments
 (0)