Skip to content

Commit

Permalink
style(lint): fix lint errors from previous commits (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
markalanevans authored Sep 11, 2024
1 parent c9593cd commit 3f92e88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ describe('Validate IOS Notification', () => {
const $ = validateIOSNotification({
communicationInfo: {
conversationId: 'id',
groupName: "Friends",
groupName: 'Friends',
sender: {
id: 'sender-id',
displayName: 'John Doe',
Expand All @@ -80,7 +80,7 @@ describe('Validate IOS Notification', () => {
expect($).toEqual({
communicationInfo: {
conversationId: 'id',
groupName: "Friends",
groupName: 'Friends',
sender: {
id: 'sender-id',
displayName: 'John Doe',
Expand Down
5 changes: 3 additions & 2 deletions tests_react_native/example/notifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ export const notifications: { key: string; notification: Notification | Notifica
categoryId: 'communicationId',
communicationInfo: {
conversationId: '123',
groupName: "Friends",
groupAvatar: 'https://pbs.twimg.com/profile_images/1070077650713133056/oji2RT4i_normal.jpg',
groupName: 'Friends',
groupAvatar:
'https://pbs.twimg.com/profile_images/1070077650713133056/oji2RT4i_normal.jpg',
sender: {
id: 'abcde',
avatar: 'https://pbs.twimg.com/profile_images/1070077650713133056/oji2RT4i_normal.jpg',
Expand Down

0 comments on commit 3f92e88

Please sign in to comment.