Skip to content

Commit

Permalink
fix(FileTree): hidden file patterns (stackblitz#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
d3lm authored Aug 8, 2024
1 parent 38e6a79 commit 6c39477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bolt/app/components/workbench/FileTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { classNames } from '~/utils/classNames';
import { renderLogger } from '~/utils/logger';

const NODE_PADDING_LEFT = 12;
const DEFAULT_HIDDEN_FILES = [/\/node_modules\//, /\.next/, /\.astro/];
const DEFAULT_HIDDEN_FILES = [/\/node_modules\//, /\/\.next/, /\/\.astro/];

interface Props {
files?: FileMap;
Expand Down

0 comments on commit 6c39477

Please sign in to comment.