Skip to content

Commit

Permalink
style changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Rosenau authored and Nick Rosenau committed Nov 16, 2023
1 parent be6d30c commit 4aecc72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/PrimerDesign/PrimerDesign.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,15 +202,15 @@ export const PrimerDesign = props => {
rev: false,
seq: forward,
start: startFwd,
temp: fwdTemp
temp: fwdTemp,
},
{
GCContent: Math.round(GCContentRev).toString() + "%",
end: endRev,
rev: true,
seq: rev,
start: startRev,
temp: revTemp
temp: revTemp,
},
]);
setOpenModal(true);
Expand Down Expand Up @@ -243,7 +243,7 @@ export const PrimerDesign = props => {
end: props.selection.end,
id: randomID(),
name: "target",
start: props.selection.start
start: props.selection.start,
};
if (!annotations.find((annotation: any) => annotation.id === target?.id)) {
setTarget(targetAnnotation);
Expand Down

0 comments on commit 4aecc72

Please sign in to comment.