(threadId: string, reminderType: ReminderTypes)
| 340 | } |
| 341 | |
| 342 | function onRemind(threadId: string, reminderType: ReminderTypes) { |
| 343 | Toast.info('We will remind you later about this thread.'); |
| 344 | markUserThreadStatuses(threadId, { |
| 345 | muted: false, |
| 346 | read: false, |
| 347 | reminder: true, |
| 348 | reminderType, |
| 349 | }); |
| 350 | } |
| 351 | |
| 352 | async function pinThread(threadId: string) { |
| 353 | const thread = |