diff --git a/src/website/views/components/BoatCompass/BoatCompass.tsx b/src/website/views/components/BoatCompass/BoatCompass.tsx index b5fbe5869..3b0397246 100644 --- a/src/website/views/components/BoatCompass/BoatCompass.tsx +++ b/src/website/views/components/BoatCompass/BoatCompass.tsx @@ -56,7 +56,7 @@ class BoatCompass extends React.Component { _rotateBoatString(boatAngle: number | null): string { if (boatAngle == null) { - return `rotate0deg)`; + return `rotate(0deg)`; } else { return `rotate(${this._rotateBoat(boatAngle)}deg)`; }