Skip to content

Commit

Permalink
remove padding from fill (#4629)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpkane authored Aug 7, 2024
1 parent 73eec95 commit 2575a5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/packages/spotlight/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
SCROLLBAR_WIDTH,
TWO,
ZERO,
ZOOMING_COEFFICIENT,
ZOOMING_COEFFICIENT
} from "./constants";
import createScrollReader from "./createScrollReader";
import { Load, RowChange } from "./events";
Expand Down Expand Up @@ -280,7 +280,7 @@ export default class Spotlight<K, V> extends EventTarget {
await this.#next(false);

while (
this.#containerHeight < this.#height + this.#padding * TWO &&
this.#containerHeight < this.#height &&
!this.#forward.finished
) {
await this.#next(false);
Expand Down

0 comments on commit 2575a5e

Please sign in to comment.