diff --git a/src/client-src/page/Repository.jsx b/src/client-src/page/Repository.jsx index 26bd043..81711ef 100644 --- a/src/client-src/page/Repository.jsx +++ b/src/client-src/page/Repository.jsx @@ -6,12 +6,18 @@ * Github: https://github.com/teeteeteeteetee * Discord: Tee#0001 * - * Last Modified: Saturday, 25th November 2023 12:10:07 pm + * Last Modified: Saturday, 25th November 2023 1:12:55 pm * Modified By: Tee (tee@stainless.love) * * Copyright (c) 2023 Tee, Demon Cat */ +import React, { useEffect, useState } from 'react'; export default function Repository(){ + + useEffect(() => { + + }, []) + return (

Repository:

diff --git a/src/rpc_client-src/index.js b/src/rpc_client-src/index.js index e0e43e8..4f46ba0 100644 --- a/src/rpc_client-src/index.js +++ b/src/rpc_client-src/index.js @@ -6,7 +6,7 @@ * Github: https://github.com/teeteeteeteetee * Discord: Tee#0001 * - * Last Modified: Saturday, 25th November 2023 1:02:21 pm + * Last Modified: Saturday, 25th November 2023 1:08:59 pm * Modified By: Tee (tee@stainless.love) * * Copyright (c) 2023 Tee, Demon Cat @@ -87,8 +87,7 @@ if (!configurations.extension) { configurations.extension = getConfiguration("extension"); } -config.data = configurations -csInterface.dispatchEvent(config) +csInterface.dispatchEvent(configurations) rpc.login() @@ -100,8 +99,8 @@ rpc.login() console.log(rpc.getUser()) csInterface.dispatchEvent(user) } - console.log(config) - csInterface.dispatchEvent(config) + console.log(configurations) + csInterface.dispatchEvent(configurations) }) })