See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| import React, { useMemo } from "react"; | |
| import { View } from "react-native"; | |
| import { degToRadians } from "src/components/OrbitLogo"; | |
| import Svg, { Circle, Line, Polygon } from "react-native-svg"; | |
| import times from "lodash.times"; | |
| type RadarData = { | |
| value: number; | |
| label: string; | |
| }; |