Skip to content

Commit 51794d4

Browse files
committed
refactor: change the location preview icon
1 parent 5d51c54 commit 51794d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

β€Žsrc/components/ChannelPreview/__tests__/utils.test.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('ChannelPreview utils', () => {
6060
['Nothing yet...', 'channelWithEmptyMessage', channelWithEmptyMessage],
6161
['Message deleted', 'channelWithDeletedMessage', channelWithDeletedMessage],
6262
['πŸ™ Attachment...', 'channelWithAttachmentMessage', channelWithAttachmentMessage],
63-
['🧭 Live location', 'channelWithLocationMessage', channelWithLocationMessage],
63+
['πŸ“Live location', 'channelWithLocationMessage', channelWithLocationMessage],
6464
])('should return %s for %s', async (expectedValue, testCaseName, c) => {
6565
const t = (text) => text;
6666
const channel = await getQueriedChannelInstance(c);

β€Žsrc/components/ChannelPreview/utils.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export const getLatestMessagePreview = (
8989
}
9090

9191
if (latestMessage.shared_location) {
92-
return t('🧭 Live location');
92+
return t('πŸ“Live location');
9393
}
9494

9595
return t('Empty message...');

0 commit comments

Comments
Β (0)