From 6b42a99404a278231515906a35683829da9f9e0b Mon Sep 17 00:00:00 2001 From: starnakin Date: Tue, 20 Feb 2024 09:40:31 +0100 Subject: [PATCH] clean: camelcase class --- frontend/static/js/api/Client.js | 2 +- frontend/static/js/api/{matchmaking.js => Matchmaking.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename frontend/static/js/api/{matchmaking.js => Matchmaking.js} (100%) diff --git a/frontend/static/js/api/Client.js b/frontend/static/js/api/Client.js index a9b53e6..480c88e 100644 --- a/frontend/static/js/api/Client.js +++ b/frontend/static/js/api/Client.js @@ -1,5 +1,5 @@ import { Account } from "./Account.js"; -import { MatchMaking } from "./matchmaking.js"; +import { MatchMaking } from "./Matchmaking.js"; import { Profiles } from "./Profiles.js"; import { Channels } from './chat/Channels.js'; import { MyProfile } from "./MyProfile.js"; diff --git a/frontend/static/js/api/matchmaking.js b/frontend/static/js/api/Matchmaking.js similarity index 100% rename from frontend/static/js/api/matchmaking.js rename to frontend/static/js/api/Matchmaking.js