Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ const FileEditContainer = () => {
</div>
</ErrorBoundary>

{['.pyroignore', '.pteroignore'].includes(filename) ? (
{['.hydroignore', '.pteroignore'].includes(filename) ? (
<div className={`mb-4 p-4 border-l-4 bg-neutral-900 rounded-sm border-cyan-400`}>
<p className={`text-neutral-300 text-sm`}>
You&apos;re editing a{' '}
<code className={`font-mono bg-black rounded-sm py-px px-1`}>.pteroignore</code> file. Any files
<code className={`font-mono bg-black rounded-sm py-px px-1`}>{filename}</code> file. Any files
or directories listed in here will be excluded from backups. Wildcards are supported by using an
asterisk (<code className={`font-mono bg-black rounded-sm py-px px-1`}>*</code>
). You can negate a prior rule by prepending an exclamation point (
Expand Down
Loading