From b86aa94d250b6b5a6c7e92d005860c1dd1dddfdd Mon Sep 17 00:00:00 2001 From: balzack Date: Sat, 7 Oct 2023 22:46:41 -0700 Subject: [PATCH] fix for error message not showing up --- .../src/session/conversation/topicItem/useTopicItem.hook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mobile/src/session/conversation/topicItem/useTopicItem.hook.js b/app/mobile/src/session/conversation/topicItem/useTopicItem.hook.js index 6fbebae6..cc397105 100644 --- a/app/mobile/src/session/conversation/topicItem/useTopicItem.hook.js +++ b/app/mobile/src/session/conversation/topicItem/useTopicItem.hook.js @@ -1,5 +1,5 @@ import { useRef, useState, useEffect, useContext } from 'react'; -import { Linking } from 'react-native'; +import { Linking, Alert } from 'react-native'; import { ConversationContext } from 'context/ConversationContext'; import { CardContext } from 'context/CardContext'; import { ProfileContext } from 'context/ProfileContext';