Skip to content

Commit

Permalink
fix: missing observer
Browse files Browse the repository at this point in the history
  • Loading branch information
phamhieu authored and joshenlim committed Nov 30, 2021
1 parent fd9bbfa commit 6163c51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions studio/pages/project/[ref]/settings/api.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ const ServiceList: FC<any> = ({ projectRef }) => {
)
}

const PostgrestConfig = ({ config, projectRef }: any) => {
const PostgrestConfig = observer(({ config, projectRef }: any) => {
const PageState: any = useContext(PageContext)
const { meta } = PageState

Expand Down Expand Up @@ -396,4 +396,4 @@ const PostgrestConfig = ({ config, projectRef }: any) => {
</SchemaFormPanel>
</>
)
}
})

0 comments on commit 6163c51

Please sign in to comment.