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 (
<>
<p className={styles["no-top-margin"]}>
To see all of the cell edits and conflicts for your current mod load
order select or drag-and-drop your <code>Data</code> directory below to
load the plugins.
Select or drag-and-drop your <code>Data</code> directory below to load
the plugins and see all of the cell edits and conflicts for your current
mod load order.
</p>
<input
type="file"

View File

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