updated marketjob-addded to marketjob-added
This commit was merged in pull request #665.
This commit is contained in:
@@ -34,7 +34,7 @@ export default function SocketIOContextProvider({children}) {
|
|||||||
|
|
||||||
const marketUpdate = (message, room) => {
|
const marketUpdate = (message, room) => {
|
||||||
if(message && room){
|
if(message && room){
|
||||||
socket.emit("marketjob_addded", { message, room });
|
socket.emit("marketjob_added", { message, room });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -29,14 +29,15 @@ const AccountDashboard = ({ className, bannerList }) => {
|
|||||||
props;
|
props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<TopBanner
|
<div key={idx}>
|
||||||
btn={short_button_text}
|
<TopBanner
|
||||||
image={image}
|
btn={short_button_text}
|
||||||
title={short_title}
|
image={image}
|
||||||
desc={short_description}
|
title={short_title}
|
||||||
link_path={link_path}
|
desc={short_description}
|
||||||
key={idx}
|
link_path={link_path}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
@@ -48,14 +49,15 @@ const AccountDashboard = ({ className, bannerList }) => {
|
|||||||
props;
|
props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<LowerBanner
|
<div key={idx}>
|
||||||
btn={short_button_text}
|
<LowerBanner
|
||||||
image={image}
|
btn={short_button_text}
|
||||||
title={short_title}
|
image={image}
|
||||||
desc={short_description}
|
title={short_title}
|
||||||
link_path={link_path}
|
desc={short_description}
|
||||||
key={idx}
|
link_path={link_path}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user