diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-07-04 13:40:18 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-04 13:40:18 +0900 |
commit | 750d92e57e48d5b3614a97558ed8c43ce0351474 (patch) | |
tree | 80fa47ec452813b579fd7919d8f32337f272c6e9 /src/background/presenters | |
parent | 63a129d2d6fab68784e902476dd9d6d5f563036a (diff) | |
parent | 6b88c15d1a6193cd090c5a1ae9b6ea06a467e171 (diff) |
Merge pull request #1194 from ueokande/dependabot/npm_and_yarn/prettier-2.3.2
Bump prettier from 2.2.1 to 2.3.2
Diffstat (limited to 'src/background/presenters')
-rw-r--r-- | src/background/presenters/ZoomPresenter.ts | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/background/presenters/ZoomPresenter.ts b/src/background/presenters/ZoomPresenter.ts index 5a3c64d..31d01c7 100644 --- a/src/background/presenters/ZoomPresenter.ts +++ b/src/background/presenters/ZoomPresenter.ts @@ -1,18 +1,5 @@ const ZOOM_SETTINGS = [ - 0.33, - 0.5, - 0.66, - 0.75, - 0.8, - 0.9, - 1.0, - 1.1, - 1.25, - 1.5, - 1.75, - 2.0, - 2.5, - 3.0, + 0.33, 0.5, 0.66, 0.75, 0.8, 0.9, 1.0, 1.1, 1.25, 1.5, 1.75, 2.0, 2.5, 3.0, ] as const; export default interface ZoomPresenter { |