Skip to content

Commit

Permalink
correção dos links dos times
Browse files Browse the repository at this point in the history
  • Loading branch information
HauedyWS committed Jul 1, 2024
1 parent 23849d9 commit 0860ccd
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion projeto/client/app/home/timesBr/America_Mineiro/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/america_mineiro")
fetch("http://localhost:8000/api/v1/games/america-mg")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/atletico_goianiense")
fetch("http://localhost:8000/api/v1/games/atletico-go")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
2 changes: 1 addition & 1 deletion projeto/client/app/home/timesBr/Atletico_Mineiro/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/atletico_mineiro")
fetch("http://localhost:8000/api/v1/games/atletico-mg")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/atletico_paranaense")
fetch("http://localhost:8000/api/v1/games/atletico-pr")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
2 changes: 1 addition & 1 deletion projeto/client/app/home/timesBr/Sao_Paulo/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/sao_paulo")
fetch("http://localhost:8000/api/v1/games/sao%20paulo")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
2 changes: 1 addition & 1 deletion projeto/client/app/home/timesSa/ColoColo/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/colo_colo")
fetch("http://localhost:8000/api/v1/games/colo%20colo")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
2 changes: 1 addition & 1 deletion projeto/client/app/home/timesSa/Nacional-URU/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/nacional_uru")
fetch("http://localhost:8000/api/v1/games/nacional-uru")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
2 changes: 1 addition & 1 deletion projeto/client/app/home/timesSa/River_Plate/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/river_plate")
fetch("http://localhost:8000/api/v1/games/river%20plate")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
2 changes: 1 addition & 1 deletion projeto/client/app/home/timesSa/San_Lorenzo/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/san_lorenzo")
fetch("http://localhost:8000/api/v1/games/san%20lorenzo")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
2 changes: 1 addition & 1 deletion projeto/client/app/home/timesSa/The_Strongest/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/the_strongest")
fetch("http://localhost:8000/api/v1/games/the%20strongest")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Home() {
const [matches, setMatches] = useState<Match[]>([]);

useEffect(() => {
fetch("http://localhost:8000/api/v1/games/junior_barranquilla")
fetch("http://localhost:8000/api/v1/games/junior%20barranquilla")
.then(response => response.json())
.then(data => {
const matchInstances = data.map((matchData: any) => new Match(
Expand Down

0 comments on commit 0860ccd

Please sign in to comment.