updated marketjob-addded to marketjob-added

This commit was merged in pull request #665.
This commit is contained in:
victorAnumudu
2024-03-21 18:05:48 +01:00
parent 7649a90c47
commit 2a8b7ba6ec
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) => { const marketUpdate = (message, room) => {
if(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; 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>