Skip to content

Commit

Permalink
Merge pull request #27 from AtlasOfLivingAustralia/feature/icon-fix
Browse files Browse the repository at this point in the history
Feature/icon fix
jack-brinkman authored Dec 13, 2024
2 parents 7d5a935 + 73c319e commit 7420f19
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -5,19 +5,19 @@
<link
rel="apple-touch-icon"
sizes="180x180"
href="/icon/light/apple-touch-icon.png"
href="/icon/dark/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/icon/light/32x32.png"
href="/icon/dark/32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/icon/light/16x16.png"
href="/icon/dark/16x16.png"
/>
<link rel="stylesheet" href="/index.css" />
<meta
2 changes: 1 addition & 1 deletion src/helpers/api/provider.tsx
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ const APIProvider = (props: PropsWithChildren<{}>): ReactElement => {
} else {
delete axios.defaults.headers['Authorization'];
}
}, [auth.isAuthenticated]);
}, [auth.isAuthenticated, auth.user, auth]);

return (
<APIContext.Provider
2 changes: 1 addition & 1 deletion src/layout/Header.tsx
Original file line number Diff line number Diff line change
@@ -161,7 +161,7 @@ export default function Header() {
<Menu.Divider />
<Menu.Item
component="a"
href="https://support.ala.org.au/support/solutions/6000139493"
href="https://support.ala.org.au/support/solutions/articles/6000276298-biocollect-pwa-app/"
target="_blank"
icon={<IconQuestionMark />}
>

0 comments on commit 7420f19

Please sign in to comment.