Skip to content

Commit

Permalink
#66 - fix: code review fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilpiech97 committed Aug 9, 2024
1 parent e5bc629 commit daaea32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Pages/Dashboard/Setting/Edit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function updateSettings() {
function onFileSelected(event) {
const file = event.target?.files[0]
if(file.size > 1024 * 1024) {
if (file.size > 1024 * 1024) {
form.errors.logo = 'Plik nie może być większy niż 1MB'
return
Expand Down

0 comments on commit daaea32

Please sign in to comment.