Skip to content

Commit

Permalink
Fixed merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
adenjonah committed Feb 22, 2024
1 parent 84590a2 commit 95c2d34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/equipment.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function equipment() {
return (
<div>
<h1>Equipment</h1>
<p>This page should show procedures for equipment repair scenarios, potentially in some form of dictionary</p>
<p>This page should show procedures for equipment repair scenarios, potentially in some form of dictionary</p>
</div>
);
}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/rocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import './../pages-style/rocks.css';

import { ProcedureList } from '../helpers/ProcedureList';
import ProcedureItem from '../components/ProcedureItem';
function rocks() {


function Rocks() {
const [showWarning, setShowWarning] = useState(false);
Expand All @@ -23,6 +21,7 @@ function Rocks() {
<p>This page will display samples that have been collected, and what samples should be kept</p>
<div className = "ProcedureList">
{ProcedureList.map((Item, key) =>{
return (
<ProcedureItem
key = {key}
name = {Item.name}
Expand Down

0 comments on commit 95c2d34

Please sign in to comment.