Skip to content

Commit

Permalink
Chatviewlist migration (#1202)
Browse files Browse the repository at this point in the history
* ci(restapi): 🎉 cut beta release to restapi-v0.0.1-alpha.61

* ci(restapi): 🎉 cut beta release to restapi-v0.0.1-alpha.62

* ci(restapi): 🎉 cut release to restapi-v0.9.0

* ci(restapi): 🎉 cut beta release to restapi-v0.0.1-alpha.63

* fix: fix errors

* ci(restapi): 🎉 cut beta release to restapi-v0.0.1-alpha.64

* fix: changed stream type to any

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.16

* fix: minor change

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.17

* fix: minor fix

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.36

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.37

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.38

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.39

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.39

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.40

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.41

* ci(restapi): 🎉 cut beta release to restapi-v0.0.1-alpha.65

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.42

* ci(restapi): 🎉 cut beta release to restapi-v0.0.1-alpha.66

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.43

* fix: fixed build issues

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.36

* ci(uiweb): 🎉 cut beta release to uiweb-v0.0.1-alpha.44

* ci(restapi): 🎉 cut beta release to restapi-v0.0.1-alpha.67

* fix: fixed minor bugs

* fix: fixed chatpreview and widget issues

* fix: fixed chat bugs

* fix: added fetch chT

* fix: fix

* fix: added fetching chat

* fix: fixed lint issues

* fix: fixed

* fix: converted send to class based

* fix: fixed

* fix: debugging stream issue

* fix: debugging stream issue

* fix: hack for stream fix

* fix: removed event listeners

* ci(uiweb): 🎉 cut release to uiweb-v1.1.15

* fix: fixed chat bugs

* fix: fixing stream issue

* fix: fixed lint

* fix: temp fix for stream

* fix: fixed

* fix: fixed copy

---------

Co-authored-by: Mohammed S <[email protected]>
  • Loading branch information
mishramonalisha76 and mohammeds1992 authored Apr 2, 2024
1 parent f3ca687 commit ae4d055
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useState } from 'react';
import { copyToClipboard } from '../../../helpers';
import { copyToClipboard, pCAIP10ToWallet } from '../../../helpers';
import { CopySvg2 } from '../../../icons/CopySvg2';
import { Section, Span, Image, Div, Tooltip } from '../../reusables';
import { IChatTheme } from '../theme';
Expand Down Expand Up @@ -74,7 +74,7 @@ export const ProfileContainer = ({
setCopyText('');
}}
onClick={() => {
copyToClipboard(member?.completeWallet || '');
copyToClipboard(pCAIP10ToWallet(member?.completeWallet || ''));
setCopyText('copied');
}}
>
Expand Down

0 comments on commit ae4d055

Please sign in to comment.