Grid from Drei does not completely show by default

Hi all. I’m trying this Grid helper from Drei and it seems like there does not seem to be a way so it shows inifnitely regardless of where the camera is. All the examples I’m looking at seem to have an appearance similar to this:

      <Grid
        rotation={[Math.PI, 0, 0]}
        infiniteGrid={true}
        cellSize={1}
        sectionSize={5}
        sectionColor={'#e0dede'}
        cellColor={'#f2f2f2'}
        cellThickness={1}
        sectionThickness={1}
        args={[1000, 1000]}
      />

Even though I’m giving it size: [1000 ,1000] the Grid just reveals itself wherever the camera is positioned at.

Have a look at the official example there’s an argument for fadeDistance as well as fadeStrength

I realized fadeDistance could go beyond 100. When I set it to 1000 along with modifying the scale to a higher value get the result I want. Thanks a lot!