Skip to content

Commit

Permalink
added feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Nov 27, 2023
1 parent 21fcef9 commit 8da3c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pwa/src/hooks/footerContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const useFooterContent = () => {
const fileName = getFileNameFromUrl(window.sessionStorage.getItem("FOOTER_CONTENT") ?? DEFAULT_FOOTER_CONTENT_URL);

const getContent = () =>
useQuery<any, Error>(["contents", fileName], () => API?.FooterContent.getContent(fileName), {
useQuery<any, Error>(["footer-content", fileName], () => API?.FooterContent.getContent(fileName), {
onError: (error) => {
console.warn(error.message);
},
Expand Down

0 comments on commit 8da3c9d

Please sign in to comment.