Skip to content

Commit

Permalink
Fix checkin type error
Browse files Browse the repository at this point in the history
  • Loading branch information
sukso96100 committed Jul 25, 2024
1 parent 95da77a commit 353f405
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/checkInByBarcodeScreen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ class _CheckInByBarcodeScreenState extends State<CheckInByBarcodeScreen> {
var qrJsonData = json.decode(rawQrJsonData);

var serverResult = await kioskClient.checkInBySearch(
qrJsonData['id'], qrJsonData['passcode']);
int.parse(qrJsonData['id']),
qrJsonData['passcode']);
var participantData = await kioskClient
.getParticipantById(qrJsonData['id']);
var snackBar = SnackBar(
Expand Down

0 comments on commit 353f405

Please sign in to comment.