updated marketjob-addded to marketjob-added #665

Merged
ameye merged 1 commits from market-job-event into master 2024-03-21 17:13:37 +00:00
2 changed files with 19 additions and 17 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ export default function SocketIOContextProvider({children}) {
const marketUpdate = (message, room) => {
if(message && room){
socket.emit("marketjob_addded", { message, room });
socket.emit("marketjob_added", { message, room });
}
};
+18 -16
View File
@@ -29,14 +29,15 @@ const AccountDashboard = ({ className, bannerList }) => {
props;
return (
<TopBanner
btn={short_button_text}
image={image}
title={short_title}
desc={short_description}
link_path={link_path}
key={idx}
/>
<div key={idx}>
<TopBanner
btn={short_button_text}
image={image}
title={short_title}
desc={short_description}
link_path={link_path}
/>
</div>
);
})}
</div>
@@ -48,14 +49,15 @@ const AccountDashboard = ({ className, bannerList }) => {
props;
return (
<LowerBanner
btn={short_button_text}
image={image}
title={short_title}
desc={short_description}
link_path={link_path}
key={idx}
/>
<div key={idx}>
<LowerBanner
btn={short_button_text}
image={image}
title={short_title}
desc={short_description}
link_path={link_path}
/>
</div>
);
})}
</div>