matrix-art

An image gallery for Matrix
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.git
Log | Files | Refs | README | LICENSE

commit 27d5408081be382719d0fc80921cf14b8c48b844
parent a0ee1bcfeefdad97f8f6a9ef370010617ace9c46
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue, 25 Jan 2022 03:55:27 +0100

Remove not needed setValue

Diffstat:
Mpages/_app.tsx | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/_app.tsx b/pages/_app.tsx @@ -6,7 +6,7 @@ import React from 'react'; import Head from 'next/head'; function MyApp({ Component, pageProps }: AppProps) { - const [value, setValue] = useState({ + const [value] = useState({ client: client, guest_client: guest_client, });