mirror of
https://github.com/logos-storage/logos-storage-installer.git
synced 2026-01-08 08:23:10 +00:00
13 lines
215 B
JavaScript
13 lines
215 B
JavaScript
import open from "open";
|
|
|
|
export class FeedbackService {
|
|
openFeedbackPage = async () => {
|
|
const segments = [
|
|
"https://tally.so/r/w2DlXb",
|
|
];
|
|
|
|
const url = segments.join("");
|
|
open(url);
|
|
};
|
|
}
|