From 2e7d913c60c25fcdbdb9d629b54bf25fb448a692 Mon Sep 17 00:00:00 2001 From: john681611 Date: Thu, 2 Nov 2023 12:26:16 +0000 Subject: [PATCH] linting --- application/frontend/src/hooks/useWindowDimensions.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/frontend/src/hooks/useWindowDimensions.tsx b/application/frontend/src/hooks/useWindowDimensions.tsx index d7f3a200..acfe312c 100644 --- a/application/frontend/src/hooks/useWindowDimensions.tsx +++ b/application/frontend/src/hooks/useWindowDimensions.tsx @@ -1,10 +1,10 @@ -import { useState, useEffect } from 'react'; +import { useEffect, useState } from 'react'; function getWindowDimensions() { const { innerWidth: width, innerHeight: height } = window; return { width, - height + height, }; } @@ -21,4 +21,4 @@ export default function useWindowDimensions() { }, []); return windowDimensions; -} \ No newline at end of file +}