Skip to content

Commit

Permalink
chore(img): fix build (#1805)
Browse files Browse the repository at this point in the history
  • Loading branch information
stavares843 authored Feb 1, 2024
1 parent 98bd205 commit dc8a9b0
Show file tree
Hide file tree
Showing 14 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ opt-level = 3
codegen-units = 1

[workspace.package]
version = "0.2.2"
version = "0.2.1"
rust-version = "1.73"

[workspace.dependencies]
Expand Down
Binary file added icons/AU-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/BL-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/BR-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/DE-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/IN-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/IT-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/JP-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/MX-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/PT-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/UK-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/UR-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/USA-flag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 11 additions & 11 deletions ui/src/components/settings/sub_pages/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,47 +231,47 @@ pub fn AboutPage(cx: Scope) -> Element {
div {
class: "flags",
img {
src: "./img/USA-Flag.png",
src: "./icons/USA-Flag.png",
alt: "USA Flag",
},
img {
src: "./img/MX-Flag.png",
src: "./icons/MX-Flag.png",
alt: "Mexico Flag",
}
img {
src: "./img/DE-Flag.png",
src: "./icons/DE-Flag.png",
alt: "Germany Flag",
}
img {
src: "./img/PT-Flag.png",
src: "./icons/PT-Flag.png",
alt: "Portugal Flag",
}
img {
src: "./img/BR-Flag.png",
src: "./icons/BR-Flag.png",
alt: "Brazil Flag",
}
img {
src: "./img/IT-Flag.png",
src: "./icons/IT-Flag.png",
alt: "Italy Flag",
}
img {
src: "./img/UR-Flag.png",
src: "./icons/UR-Flag.png",
alt: "Ukraine Flag",
}
img {
src: "./img/BL-Flag.png",
src: "./icons/BL-Flag.png",
alt: "Belarus Flag",
}
img {
src: "./img/JP-Flag.png",
src: "./icons/JP-Flag.png",
alt: "Japan Flag",
}
img {
src: "./img/AU-Flag.png",
src: "./icons/AU-Flag.png",
alt: "Australia Flag",
}
img {
src: "./img/IN-Flag.png",
src: "./icons/IN-Flag.png",
alt: "Indonesia Flag",
}
}
Expand Down

0 comments on commit dc8a9b0

Please sign in to comment.