Skip to content

Commit

Permalink
Merge branch 'main' into 587-issue---refactor-delete-dialog-logic
Browse files Browse the repository at this point in the history
  • Loading branch information
yassinedorbozgithub committed Jan 23, 2025
2 parents abad614 + ee7c618 commit 919058c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion api/src/chat/services/chat.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,6 @@ export class ChatService {

if (!subscriber) {
const subscriberData = await handler.getSubscriberData(event);
this.eventEmitter.emit('hook:stats:entry', 'new_users', 'New users');
subscriberData.channel = event.getChannelData();
subscriber = await this.subscriberService.create(subscriberData);

Expand Down
7 changes: 6 additions & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,15 @@ WORKDIR /app

COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./

COPY frontend/package*.json ./frontend/

COPY widget/package*.json ./widget/

RUN npm install

COPY ./frontend ./frontend
COPY ./widget ./widget

RUN npm install


# used to by pass Next.js paching lock file
Expand Down

0 comments on commit 919058c

Please sign in to comment.