Skip to content

Commit

Permalink
Change icon URL to correct path (#1055)
Browse files Browse the repository at this point in the history
## High Level Overview of Change

Google chrome search result icon was broken, edited links to point to
correct assets.
<!--
Please include a summary/list of the changes.
If too broad, please consider splitting into multiple PRs.
-->

### Context of Change

<!--
Please include the context of a change.
If a bug fix, when was the bug introduced? What was the behavior?
If a new feature, why was this architecture chosen? What were the
alternatives?
If a refactor, how is this better than the previous implementation?

If there is a design document for this feature, please link it here.
-->

### Type of Change

<!--
Please check relevant options, delete irrelevant ones.
-->

- [x] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] Refactor (non-breaking change that only restructures code)
- [ ] Tests (You added tests for code that already exists, or your new
feature included in this PR)
- [ ] Documentation Updates
- [ ] Translation Updates
- [ ] Release

### TypeScript/Hooks Update

<!--
In an effort to modernize the codebase, you should convert the files
that you work with to React Hooks and TypeScript.
If this is not possible (e.g. it's too many changes, touching too many
files, etc.) please explain why here.
-->

- [ ] Updated files to React Hooks
- [ ] Updated files to TypeScript

## Before / After

<!--
If just refactoring / back-end changes, this can be just an in-English
description of the change at a technical level.
If a UI change, screenshots should be included.
-->

## Test Plan

<!--
Please describe the tests that you ran to verify your changes and
provide instructions so that others can reproduce.
-->

<!--
## Future Tasks
For future tasks related to PR.
-->
  • Loading branch information
achowdhry-ripple authored Oct 15, 2024
1 parent 2279513 commit 3df3fb4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
-->
<link rel="manifest" href="/manifest.json">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link href="/apple-touch-icon.png" rel="apple-touch-icon" />
<link href="/android-icon.png" rel="icon" sizes=”192×192″ />
<link href="../public/apple-touch-icon.png" rel="apple-touch-icon" />
<link href="../public/android-icon.png" rel="icon" sizes="192×192" />
<link href="../public/favicon.ico" type="image/x-icon" rel="icon" sizes="64x64 32x32 24x24 16x16" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&display=swap" rel="stylesheet">
Expand Down

0 comments on commit 3df3fb4

Please sign in to comment.