Skip to content

Commit f950706

Browse files
piny4manrobertohuertasm
authored andcommitted
refactor(front): ferris image and host port
1 parent 7d2007f commit f950706

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

front/public/ferris.png

20.1 KB
Loading

front/src/components/header.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub fn Header(cx: Scope) -> Element {
1010
img {
1111
class: "w-20 h-20 bg-transparent p-2 animate-jump",
1212
alt: "ferris",
13-
src: "ferris.svg"
13+
src: "ferris.png"
1414
}
1515
span { class: "ml-3 text-xl", "Rusty films"}
1616
}

front/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use dioxus::prelude::*;
77
use serde::{Deserialize, Serialize};
88

99
// const HOST: &str = "https://devbcn.shuttleapp.rs/api/v1";
10-
const HOST: &str = "http://localhost:5000/api/v1";
10+
const HOST: &str = "http://localhost:8000/api/v1";
1111

1212
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq)]
1313
struct Film {

0 commit comments

Comments
 (0)