Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main Release 1.4.1 #1369

Merged
merged 41 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
360083d
fixed chat responsiveness
HarshRajat May 15, 2024
d864378
fixed preview link alignment to right
HarshRajat May 15, 2024
3115854
added relative imports for better management
HarshRajat May 15, 2024
9e7432e
Merge pull request #1289 from push-protocol/uiweb-absolute-imports
HarshRajat May 16, 2024
e0f7bae
Merge pull request #1287 from push-protocol/responsiveness-mobile-uiw…
HarshRajat May 16, 2024
f5070a2
Search issue (#1270)
mishramonalisha76 May 21, 2024
8d360bc
fix: Merge branch 'main' into alpha
mohammeds1992 May 21, 2024
1cfec21
fix: fixed support chat init issue (#1292)
mishramonalisha76 May 22, 2024
c244626
fix(chatviewlist): increase hidden/encrypted chat blur
corlard3y May 22, 2024
c52e517
Added Reaction support, (#1303)
HarshRajat May 23, 2024
4d56d45
fix: add selected option
corlard3y May 24, 2024
b0ac6c5
fix: add return fn
corlard3y May 27, 2024
2f37ba6
fix: add comment to fn
corlard3y May 27, 2024
89975b4
fix: add push bot address
corlard3y May 27, 2024
e5bd9fa
fix: export const
corlard3y May 27, 2024
7c60e1b
fix: reset chat_id
corlard3y May 27, 2024
74be11e
fix: remove console
corlard3y May 27, 2024
d8241be
fix: update dark mode theme
corlard3y May 27, 2024
122fb44
fix: code review comments
corlard3y May 27, 2024
ed630b5
fix: add null check
corlard3y May 27, 2024
19f3f6b
fix: update conditions
corlard3y May 27, 2024
4a161c8
fix: pending wallet address copy issue fixed
abhishek-01k May 28, 2024
8c45b54
fix: update chatprevie badge conditions
corlard3y May 29, 2024
bbf6778
fix: tooltip was not properly aligned
abhishek-01k May 29, 2024
2f3ade1
fix: scrollbar in member list in group info was not visible
abhishek-01k May 29, 2024
d8b026f
Merge pull request #1312 from push-protocol/1307-bug-increase-bg-blur…
corlard3y May 29, 2024
8512e41
Merge pull request #1324 from push-protocol/skeleton-loading-dark-mode
corlard3y May 29, 2024
06254e6
Merge pull request #1323 from push-protocol/1320-bug-chat-badge
corlard3y May 29, 2024
794666e
Space - id integration (#1322)
mishramonalisha76 May 29, 2024
b295043
fix: fixed the blurr issue in chat on join and accept group (#1305)
mishramonalisha76 May 29, 2024
738383d
fix: fixed lint issue
mishramonalisha76 May 29, 2024
952f06d
Merge branch 'main' of github.com:push-protocol/push-sdk into alpha
rohitmalhotra1420 May 31, 2024
82087a9
fixed build error for incorrect naming
rohitmalhotra1420 May 31, 2024
5f57d4a
Merge branch 'alpha' into SDK-#1298-scrollbar-not-visible-on-member-info
abhishek-01k May 31, 2024
58636d0
Merge pull request #1326 from push-protocol/SDK-1297-copying-pendingW…
abhishek-01k May 31, 2024
cc8dc28
Merge pull request #1328 from push-protocol/SDK-1299-Tooltip-not-prop…
abhishek-01k May 31, 2024
7877b61
Merge pull request #1329 from push-protocol/SDK-#1298-scrollbar-not-v…
abhishek-01k May 31, 2024
2c43806
fixes ui representation for domain resolution (#1336)
mishramonalisha76 Jun 7, 2024
957e093
fix: updated guild validation url (#1363)
mishramonalisha76 Jun 20, 2024
b0c77c2
Merged main into alpha
rohitmalhotra1420 Jun 20, 2024
0afda4d
fix: fixed group creation (#1365)
mishramonalisha76 Jun 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import styled from 'styled-components';

import { ChatView, MODAL_BACKGROUND_TYPE } from '@pushprotocol/uiweb';
import {
ChatView,
CreateGroupModal,
MODAL_BACKGROUND_TYPE,
} from '@pushprotocol/uiweb';
import { Section } from '../components/StyledComponents';
import Img from '../../assets/epnsLogo.png';
import { CHAT_ID } from '../constants';
Expand All @@ -17,7 +21,12 @@ const ChatViewComponentTest = () => {

<ChatViewComponentCard>
{/* uncomment the below code to test create group modal */}
{/* <CreateGroupModal onClose={()=>{console.log('in close')}} modalBackground={MODAL_BACKGROUND_TYPE.OVERLAY} modalPositionType={MODAL_POSITION_TYPE.RELATIVE}/> */}
<CreateGroupModal
onClose={() => {
console.log('in close');
}}
modalBackground={MODAL_BACKGROUND_TYPE.OVERLAY}
/>
<ChatView
onVerificationFail={() => console.log('Verification Failed')}
chatId={CHAT_ID}
Expand Down
2 changes: 1 addition & 1 deletion packages/restapi/src/lib/pushapi/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class Chat {
reference?: string | null;
}
) {
let reference: string;
let reference: string | null = null;

const { threadHash, intent } = await PUSH_CHAT.conversationHash({
conversationId: target,
Expand Down
Loading
Loading