Skip to content

Commit

Permalink
Merge pull request #364 from scottbenton:ios/oracle-separator
Browse files Browse the repository at this point in the history
fix(separator): Fixed oracle separator not showing on IOS
  • Loading branch information
scottbenton authored Feb 18, 2024
2 parents 8c46dec + 8c3eee5 commit cbf2919
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function OracleCategory(props: OracleCategoryProps) {
const openDialog = useStore((store) => store.appState.openDialog);

const title = prefix
? `${prefix} ${category.Title.Standard}`
? `${prefix} / ${category.Title.Standard}`
: category.Title.Standard;

const sampleNames = category["Sample Names" as "Sample names"];
Expand Down

0 comments on commit cbf2919

Please sign in to comment.