Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
carbonrobot committed Jan 12, 2024
1 parent 7d1a9e5 commit 8c8e02d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/victory-polar-axis/src/victory-polar-axis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
EventsMixinClass,
} from "victory-core";
import { getScale, getStyles, getBaseProps } from "./helper-methods";
import { VictoryPolarAxisProps } from './types';
import { VictoryPolarAxisProps } from "./types";

const fallbackProps: Partial<VictoryPolarAxisProps> = {
width: 450,
Expand All @@ -34,7 +34,8 @@ const options = {
};

// eslint-disable-next-line @typescript-eslint/no-empty-interface
interface VictoryPolarAxisBase extends EventsMixinClass<VictoryPolarAxisProps> {}
interface VictoryPolarAxisBase
extends EventsMixinClass<VictoryPolarAxisProps> {}

class VictoryPolarAxisBase extends React.Component<VictoryPolarAxisProps> {
static animationWhitelist = [
Expand Down

0 comments on commit 8c8e02d

Please sign in to comment.