Give md extension higher priority for sorting!

This commit is contained in:
muzam1l
2022-08-12 15:22:57 +05:30
parent 6dd5712573
commit 4b2b4b25c0

View File

@@ -57,8 +57,8 @@ export const fetchFiles = async (gistId: string) => {
// default priority is undefined == 0
const extPriority: Record<string, number> = {
c: 2,
md: 1,
c: 1,
md: 2,
h: -1
}