Skip to content

Commit

Permalink
Fixed participating in parties
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpiniasty committed Jul 25, 2023
1 parent a1d4190 commit 869669b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/controllers/party_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ class PartyController {
static Future<List<Party>> myParties() async {
const storage = FlutterSecureStorage();
final token = await storage.read(key: "access");
// TODO wait for backend update in order to change the URL
final url = "$mainUrl/parties/";
final url = "$mainUrl/parties/participant/";
final res = await http.get(
Uri.parse(url),
headers: {
Expand Down

0 comments on commit 869669b

Please sign in to comment.