move messages legacy view (#17354)

This commit is contained in:
flexsurfer 2023-09-20 15:42:57 +02:00 committed by GitHub
parent 41282a9f5d
commit 92cc49184d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
(ns status-im2.contexts.chat.messages.content.legacy-view
(ns status-im.ui.screens.chat.message.legacy-view
(:require
[quo.design-system.colors :as quo.colors]
[quo.react-native :as rn]

View File

@ -1,6 +1,6 @@
(ns status-im2.contexts.chat.messages.content.system.text.view
(:require [react-native.core :as rn]
[status-im2.contexts.chat.messages.content.legacy-view :as old-message]))
[status-im.ui.screens.chat.message.legacy-view :as old-message]))
(defn text-content
[message-data]

View File

@ -19,7 +19,7 @@
[status-im2.contexts.chat.messages.content.audio.view :as audio]
[quo2.core :as quo]
[utils.re-frame :as rf]
[status-im2.contexts.chat.messages.content.legacy-view :as old-message]
[status-im.ui.screens.chat.message.legacy-view :as old-message]
[status-im2.contexts.chat.composer.reply.view :as reply]
[status-im2.common.not-implemented :as not-implemented]
[utils.datetime :as datetime]

View File

@ -2,7 +2,7 @@
(:require [clojure.string :as string]
[quo2.core :as quo]
[react-native.gesture :as gesture]
[status-im2.contexts.chat.messages.content.legacy-view :as old-message]
[status-im.ui.screens.chat.message.legacy-view :as old-message]
[status-im2.common.not-implemented :as not-implemented]
[status-im2.constants :as constants]
[status-im2.contexts.shell.activity-center.notification.common.view :as common]