JoLo

Results 50 comments of JoLo

@Traxmaxx I am not a big React dev nor a fan :D The problem is that the function `animateEdge` is not unmounted when routing to a different path. I know...

The reason why this happens is because the function `animateEdges` will not get destroyed when moving to a different page. That leads to not finding the edges

@AllieMendes Do you intend to have a lightning effect as in the link you provided or could it be something like this (dashed-line animation): https://github.com/tailwarden/komiser/assets/54506108/49558b55-955e-4654-bf6d-5b3ea2561fa2

@Traxmaxx alright. I thought so. Let's see how far I get

@Traxmaxx and @AllieMendes How that looks like? https://github.com/tailwarden/komiser/assets/54506108/c5ad62e7-9917-4e44-86b0-9a7ab9b351bd

@jakepage91 This is already done, right? https://github.com/tailwarden/komiser/blob/793bc3c563a33297e4fe121a51abd297b5b76f1d/providers/aws/kinesis/streams.go#L50

@jaredbradley243 thanks for your interest. I am currently working on that but if you want you can assign this to you 😉

@jaredbradley243 No no. Really. Let me be your reviewer then ;)

Hey @jaredbradley243, Great work. But why is this completed? The PR is still open :D

I did in the end for my `router` this: ```ts router.use('/', defineEventHandler(async (event) => { const cors = handleCors(event, { origin: '*', preflight: { statusCode: 204, }, methods: '*', });...