Skip to content

Commit

Permalink
add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
nora-kauczor committed Nov 21, 2024
1 parent 58429f1 commit 817ceab
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public Vocab createAndActivateVocab(VocabDTOCreate vocabDTO, String userName) th
Language language = Language.getEnumByString(vocabDTO.language());
Map<String, List<LocalDate>> datesPerUser = new HashMap<>();
LocalDate today = ZonedDateTime.now().toLocalDate();
System.out.println(today.getClass().getName());
List<LocalDate> dates = generateDates(today);
datesPerUser.put(userName, dates);
Vocab newVocab = new Vocab(null, vocabDTO.word(), vocabDTO.translation(),
Expand Down
Binary file added frontend/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/png" href="./favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
Expand Down

0 comments on commit 817ceab

Please sign in to comment.