Skip to content

Commit

Permalink
OTC-950: allRegions flag removed (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
olewandowski1 authored May 16, 2023
1 parent ed4bdf1 commit f3c31d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/InsureeFirstServicePointPanel.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import React from "react";
import { withTheme, withStyles } from "@material-ui/core/styles";

import { Paper, Grid, Typography, Divider } from "@material-ui/core";
import { withTheme, withStyles } from "@material-ui/core/styles";

import { FormattedMessage, PublishedComponent, FormPanel } from "@openimis/fe-core";

const styles = (theme) => ({
Expand All @@ -12,7 +14,6 @@ const styles = (theme) => ({
class InsureeFirstServicePointPanel extends FormPanel {
render() {
const { classes, updateAttribute, readOnly, edited } = this.props;
const allRegions = true;
return (
<Grid container>
<Grid item xs={12}>
Expand All @@ -30,7 +31,6 @@ class InsureeFirstServicePointPanel extends FormPanel {
value={edited?.healthFacility ?? null}
readOnly={readOnly}
onChange={(hf) => updateAttribute("healthFacility", hf)}
allRegions={allRegions}
ignoreLocation={true}
/>
)}
Expand Down

0 comments on commit f3c31d9

Please sign in to comment.