TomNUSDS

Results 10 comments of TomNUSDS

Thanks for looking into this issue and making security a priority! I checked out that package and unfortunately, it seems to [manipulate styles directly](https://github.com/olmokramer/scrollbar-width.js/blob/master/scrollbar-width.js#L21): ```javascript div1 = document.createElement('div'); div2 =...

@drew-usds I think I fixed it so the /styles.css isn't in github anymore.

@drew-usds As far as a slow home page goes, these two carousel image files are really big: - images/project-ssa-card.jpg (2MB) - images/project-cdc-simple-report-card.jpg (3.9MB)

Can you down sample if you have time? My other projects are a bit crazy for another week. I'm also worried I might edit an image that's used by the...

> Some internal links are being treated as external when viewing locally I think this is just a local thing, but I'll see if I can't make it work. >...

This dropped off my radar and I never merged it.

I just hit this bug and was going to report it. It's as easy to repro as: 1. `npm create vite@latest` (choose React, typescript) 2. `cd [project]` 3. `npm i...

Another thought: FilePreview aspect of the FileInput component is cool, but there doesn't seem to be any way to set a defaultValue for the preview? Any form that allows a...

Yeah, to fix this component would be something like this? ```typescript const [showGenericPreview, setShowGenericPreview] = useState(false) const firstRenderRef = useRef(false) useEffect(() => { if (firstRenderRef.current) { // already run, do...