aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
diff options
context:
space:
mode:
authoralinayejin <alina_kim@brown.edu>2023-12-19 00:49:15 -0500
committeralinayejin <alina_kim@brown.edu>2023-12-19 00:49:15 -0500
commit43fc3b1bb5caaad772342856c7ddc4c1d55ec36d (patch)
treed3d2b7d34d593f201acbcb9fcbde8e200f49377f /src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
parentb429869f710ec664b2750d5e92207707ae4748e5 (diff)
added formatted gif to info ui
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx')
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
index 524869e6d..763d14116 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoState.tsx
@@ -97,13 +97,10 @@ export class CollectionFreeFormInfoState extends ObservableReactComponent<Collec
render() {
return (
<div className="infoUI">
+ <div className="msg">{this.State?.[StateMessage]}</div>
<div className="gif-container" style={{ display: this.State?.[StateMessageGIF] ? undefined : 'none' }}>
<img className="gif" src={this.State?.[StateMessageGIF]} alt="state message gif"></img>
</div>
-
- {/* <img src={this.State?.[StateMessageGIF]} alt='state message gif'></img> */}
- {/* <img src="./assets/link.png"></img> */}
- {this.State?.[StateMessage]}
</div>
);
}