Skip to content

Commit

Permalink
Stub demo app to always mention "matt"
Browse files Browse the repository at this point in the history
  • Loading branch information
mchowning committed Apr 20, 2020
1 parent 41dbe0a commit 8446c5b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion android/app/src/main/java/com/gutenberg/MainApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ public void editorDidEmitLog(String message, LogLevel logLevel) {
public void performRequest(String path, Consumer<String> onSuccess, Consumer<Bundle> onError) {}

@Override
public void onAddMention(Consumer<String> onSuccess) {}
public void onAddMention(Consumer<String> onSuccess) {
onSuccess.accept("matt");
}

}, isDarkMode());

Expand Down

0 comments on commit 8446c5b

Please sign in to comment.