Skip to content

Commit

Permalink
disable poi
Browse files Browse the repository at this point in the history
  • Loading branch information
myangelkamikaze committed Nov 25, 2024
1 parent a0d213d commit 33f6250
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ public PoiDbSubmissionService(KCDatabase kcDatabase)

private void OnConfigurationChanged()
{
// disable poi till we can make it work
return;

if (Configuration.Config.DataSubmission.SendDataToPoiPreview)
{
SubscribeToApis();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@
</TextBlock>
</StackPanel>

<CheckBox Content="PoiDB" IsChecked="{Binding SendDataToPoi}" />
<CheckBox
Content="PoiDB"
IsChecked="{Binding SendDataToPoi}"
Visibility="Collapsed"
/>

<StackPanel Orientation="Horizontal">
<CheckBox Content="{Binding Translation.BonodereIntegration, Mode=OneWay}" IsChecked="{Binding BonodereIntegrationEnabled}" />
Expand Down

0 comments on commit 33f6250

Please sign in to comment.