Skip to content

Commit

Permalink
Fix buyseller
Browse files Browse the repository at this point in the history
  • Loading branch information
jahongiry committed Mar 3, 2024
1 parent 466a908 commit d3496fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/pages/chat/Chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import read_tick from '../../img/checkmark-done-outline.svg';
import moment from 'moment';
import hamburger from '../../img/icons/hamburger_icon.svg';
import send_icon from '../../img/icons/send_icon.svg';
import ChatFinishBuyer from './chatFinish/chatFinishSeller';
import ChatFinishBuyer from './chatFinish/chatFinishBuyer';
import ChatFinishSeller from './chatFinish/chatFinishSeller';

const Chat = () => {
Expand Down Expand Up @@ -143,7 +143,7 @@ const Chat = () => {
/>
</div>
<div className='send-button' onClick={handleSubmit}>
<img src={send_icon} className="send_icon" alt='send icon' />
<img src={send_icon} className='send_icon' alt='send icon' />
</div>
</form>
</div>
Expand Down
1 change: 0 additions & 1 deletion src/pages/chat/chatFinish/chatFinishBuyer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, { useState } from 'react';
import { useDispatch } from 'react-redux';
import { finalizeOffer } from '../../../slices/chatSlice';
import './chatFinishSeller.css';
import { useDispatch, useSelector } from 'react-redux';
Expand Down

0 comments on commit d3496fb

Please sign in to comment.