diff --git a/net/web/src/User/Conversation/AddTopic/AddCarousel/AddCarousel.jsx b/net/web/src/User/Conversation/AddTopic/AddCarousel/AddCarousel.jsx
index 7389c61d..7112d5ca 100644
--- a/net/web/src/User/Conversation/AddTopic/AddCarousel/AddCarousel.jsx
+++ b/net/web/src/User/Conversation/AddTopic/AddCarousel/AddCarousel.jsx
@@ -17,7 +17,6 @@ export function AddCarousel({ state, actions }) {
const [scrollRight, setScrollRight] = useState('hidden');
const onLeft = () => {
- console.log(itemIndex.current);
if (itemIndex.current > 0) {
itemIndex.current -= 1;
setScroll();
@@ -25,7 +24,6 @@ export function AddCarousel({ state, actions }) {
}
const onRight = () => {
- console.log(itemIndex.current);
if(itemIndex.current + 1 < itemCount.current) {
itemIndex.current += 1;
setScroll();
@@ -33,7 +31,6 @@ export function AddCarousel({ state, actions }) {
}
const setScroll = () => {
- console.log(">>", itemIndex.current);
let pos = 0;
for (let i = 0; i < itemIndex.current; i++) {
pos += itemWidth.current.get(i) + 32;
@@ -69,9 +66,9 @@ export function AddCarousel({ state, actions }) {
{({ width, height }) => {
itemWidth.current.set(i, width);
if (i % 2 == 0) {
- return
![]({login})
+ return ![]({login})
}
- return ![]({test})
+ return ![]({test})
}}
));
diff --git a/net/web/src/User/Conversation/AddTopic/AddTopic.jsx b/net/web/src/User/Conversation/AddTopic/AddTopic.jsx
index ce64d669..ece3ce39 100644
--- a/net/web/src/User/Conversation/AddTopic/AddTopic.jsx
+++ b/net/web/src/User/Conversation/AddTopic/AddTopic.jsx
@@ -25,15 +25,12 @@ export function AddTopic() {
actions.addAudio()}>Attach Audio
-
- actions.addIframe()}>Embed Link
-
);
return (
-
+
diff --git a/net/web/src/User/Conversation/Conversation.jsx b/net/web/src/User/Conversation/Conversation.jsx
index 149fc2f8..5e977eb7 100644
--- a/net/web/src/User/Conversation/Conversation.jsx
+++ b/net/web/src/User/Conversation/Conversation.jsx
@@ -32,9 +32,8 @@ export function Conversation() {
>
{({ measure, registerChild }) => (
// 'style' attribute required to position cell (within parent List)
-
-
-
+
+ TEST MESSAGE!!!
)}
diff --git a/net/web/src/index.css b/net/web/src/index.css
index ec2585e8..c4dfc45b 100644
--- a/net/web/src/index.css
+++ b/net/web/src/index.css
@@ -11,3 +11,13 @@ code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
+
+.noselect {
+ -webkit-touch-callout: none; /* iOS Safari */
+ -webkit-user-select: none; /* Safari */
+ -khtml-user-select: none; /* Konqueror HTML */
+ -moz-user-select: none; /* Old versions of Firefox */
+ -ms-user-select: none; /* Internet Explorer/Edge */
+ user-select: none; /* Non-prefixed version, currently
+ supported by Chrome, Edge, Opera and Firefox */
+}