Skip to content

Commit

Permalink
Fix size of pin creation view (#907)
Browse files Browse the repository at this point in the history
* fix view size

* Revert unrelated changes
  • Loading branch information
zorikon committed Apr 9, 2024
1 parent 53c7020 commit 3f1b491
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Whisky/Views/Bottle/Pins/PinCreationView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ struct PinCreationView: View {
submit()
}
}
.frame(minWidth: 400, minHeight: 170)
.fixedSize(horizontal: false, vertical: true)
.frame(minWidth: 400)
}

func submit() {
Expand Down

0 comments on commit 3f1b491

Please sign in to comment.