Skip to content

Commit

Permalink
Done.
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterGetman committed Jun 30, 2024
1 parent aebe11d commit 547b17e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function handleFormSubmit(e) {
loader.classList.toggle('hidden');
}

async function handleLoadButtonClick(e) {
async function handleLoadButtonClick() {
loader.classList.toggle('hidden');
page++;

Expand Down Expand Up @@ -80,7 +80,7 @@ async function loadAndRenderPics() {
} catch (error) {
showNotification({
title: '<b>Error:</b>',
message: error,
message: error.message,
backgroundColor: 'tomato',
});
}
Expand All @@ -99,7 +99,7 @@ async function loadAndRenderMorePics() {
} catch (error) {
showNotification({
title: '<b>Error:</b>',
message: error,
message: error.message,
backgroundColor: 'tomato',
});
}
Expand Down

0 comments on commit 547b17e

Please sign in to comment.