Wording tweak in DataDirPicker

This commit is contained in:
Tyler Hallada 2022-03-10 01:18:19 -05:00
parent ae6b3bff12
commit 559b6600ac
2 changed files with 4 additions and 4 deletions

View File

@ -47,9 +47,9 @@ const DataDirPicker: React.FC<Props> = () => {
return ( return (
<> <>
<p className={styles["no-top-margin"]}> <p className={styles["no-top-margin"]}>
To see all of the cell edits and conflicts for your current mod load Select or drag-and-drop your <code>Data</code> directory below to load
order select or drag-and-drop your <code>Data</code> directory below to the plugins and see all of the cell edits and conflicts for your current
load the plugins. mod load order.
</p> </p>
<input <input
type="file" type="file"

View File

@ -7,7 +7,7 @@ import { togglePlugin } from "../slices/plugins";
import styles from "../styles/PluginList.module.css"; import styles from "../styles/PluginList.module.css";
type Props = { type Props = {
selectedCell: { x: number; y: number }; selectedCell?: { x: number; y: number };
}; };
const PluginsList: React.FC<Props> = ({ selectedCell }) => { const PluginsList: React.FC<Props> = ({ selectedCell }) => {