Skip to content

Commit abf0abf

Browse files
committed
style
1 parent 7950095 commit abf0abf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/telegram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ const image = (token: string) =>
204204
const sharedOwnPhone = (
205205
ownId: number,
206206
{ user_id, phone_number }: grammy.Contact,
207-
) => (user_id === ownId) ? phone_number : undefined;
207+
) => user_id === ownId ? phone_number : undefined;
208208

209209
const contactToFullName = ({ first_name, last_name }: grammy.Contact) =>
210210
first_name + (last_name ? ` ${last_name}` : "");

0 commit comments

Comments
 (0)