We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a64183b commit 839ad1fCopy full SHA for 839ad1f
src/website/views/components/BoatCompass/BoatCompass.tsx
@@ -56,7 +56,7 @@ class BoatCompass extends React.Component<BoatCompassProps> {
56
57
_rotateBoatString(boatAngle: number | null): string {
58
if (boatAngle == null) {
59
- return `rotate0deg)`;
+ return `rotate(0deg)`;
60
} else {
61
return `rotate(${this._rotateBoat(boatAngle)}deg)`;
62
}
0 commit comments