Skip to content

Commit cd72b33

Browse files
committed
Test
1 parent 502774f commit cd72b33

File tree

1 file changed

+3
-3
lines changed
  • src/client/apps/contwatch-client/app/[lang]/handlers

1 file changed

+3
-3
lines changed

src/client/apps/contwatch-client/app/[lang]/handlers/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ export default async function PageHandlers({ params }: PageParams) {
2929
await DataStats.fetch<DataStatModel[]>({ params: { attribute: attributeId.toString() } });
3030
}
3131

32+
console.log(Handlers.endpoint());
33+
3234
return (
3335
<CustomSWRConfig
3436
value={{
@@ -43,9 +45,7 @@ export default async function PageHandlers({ params }: PageParams) {
4345
{t("Handlers")}
4446
</Text>
4547
<HandlersWrapper>
46-
{handlerIds?.map((handlerId) => (
47-
<HandlerWidget key={handlerId} {...{ handlerId }} />
48-
))}
48+
{handlerIds?.map((handlerId) => <HandlerWidget key={handlerId} {...{ handlerId }} />)}
4949
</HandlersWrapper>
5050
</CustomSWRConfig>
5151
);

0 commit comments

Comments
 (0)