ordering-ui-react-native 0.23.22 → 0.23.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -69,7 +69,7 @@ const ChatUI = (props: MessagesParams) => {
|
|
|
69
69
|
const [, { showToast }] = useToast();
|
|
70
70
|
const theme = useTheme();
|
|
71
71
|
const [messageList, setMessageList] = useState<any>([])
|
|
72
|
-
const previousStatus = [1, 2, 5, 6, 10, 11, 12, 16, 17]
|
|
72
|
+
const previousStatus = [1, 2, 5, 6, 10, 11, 12, 15, 16, 17]
|
|
73
73
|
const chatDisabled = previousStatus.includes(order?.status)
|
|
74
74
|
|
|
75
75
|
const ORDER_STATUS: any = {
|
|
@@ -76,7 +76,7 @@ const MessagesUI = (props: MessagesParams) => {
|
|
|
76
76
|
|
|
77
77
|
const [formattedMessages, setFormattedMessages] = useState<Array<any>>([])
|
|
78
78
|
const [isKeyboardShow, setIsKeyboardShow] = useState(false)
|
|
79
|
-
const previousStatus = [1, 2, 5, 6, 10, 11, 12, 16, 17]
|
|
79
|
+
const previousStatus = [1, 2, 5, 6, 10, 11, 12, 15, 16, 17]
|
|
80
80
|
const chatDisabled = previousStatus.includes(order?.status)
|
|
81
81
|
const { height } = useWindowDimensions();
|
|
82
82
|
const { top, bottom } = useSafeAreaInsets();
|